This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); ($details=netsh wlan show profile name="$name" key=clear) -and ($pass=($details | Select-String "Key Content\W+\:(.+)$").Matches.Groups[1].Value.Trim() -or "N/A"); [PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| REM This will export all wifi profiles to the current folder. Each profile has its own XML file. | |
| netsh wlan export profile key=clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import requests | |
| import sys,os | |
| import time | |
| username = "YOUR_USERNAME" | |
| password_list = "PASSWORD_LIST" | |
| login_try = { | |
| "op" : "login", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Tired of scrolling to one of the last photos on the page on Instagram? Let your | |
| browser do the scrolling for you! | |
| 31-05-2017 | |
| (c) 2017 - Loran Kloeze - loran@ralon.nl | |
| Usage | |
| - Go to https://www.instagram.com/instagram_handle/ (change instagram_handle in i.e. taylorswift) | |
| - Open up the console (F12) (Firefox users: type 'allow pasting' if you haven't done so yet) | |
| - Select the contents of this complete file and copy/paste it to the console and hit enter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Run with full administrator rights | |
| netsh wlan export profile folder=. key=clear |