Skip to content

Instantly share code, notes, and snippets.

View a-mishra's full-sized avatar
🏠
Working from home

Ashutosh Mishra a-mishra

🏠
Working from home
View GitHub Profile
@a-mishra
a-mishra / git_cheat-sheet.md
Created January 5, 2018 18:50 — forked from davfre/git_cheat-sheet.md
git commandline cheat-sheet
@a-mishra
a-mishra / shodan_wps_example.py
Created November 30, 2016 06:30 — forked from achillean/shodan_wps_example.py
Shodan WPS Example
# Import the class
from shodan.wps import GoogleLocation
# Setup the object
wps_client = GoogleLocation()
# Locate the physical address of the MAC/ BSSID
address = wps_client.locate('00:1D:7E:F0:A2:B0')
@a-mishra
a-mishra / kali_wps.txt
Created November 30, 2016 06:25 — forked from CHEF-KOCH/kali_wps.txt
KALI WPS test
ifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up
airodump-ng wlan0
wash -i wlan0 -C | grep <SSID>
reaver -i wlan0 -b <your-MAC> -K 1 -w -vv
Research:
* http://docs.kali.org/downloading/kali-linux-live-usb-install
* http://sourceforge.net/projects/win32diskimager/
@a-mishra
a-mishra / update-android-id.sh
Created June 23, 2016 09:02 — forked from halfvector/update-android-id.sh
update device's android_id
# prerequisites: rooted device, adb, sqlite installed locally
# works beautifully on glass
# android-ids are hexadecimal [0-9a-f]
# install sqlite3 locally to modify the db
sudo apt-get install -y sqlite3
# make sure we have a device connected
adb devices