├── .gitignore ├── Black-Hat-Python ├── BHP-Code │ ├── .DS_Store │ ├── Chapter10 │ │ ├── .DS_Store │ │ ├── bhvulnservice.zip │ │ ├── file_monitor.py │ │ └── process_monitor.py │ ├── Chapter11 │ │ ├── .DS_Store │ │ ├── cmeasure.bin │ │ ├── code_coverage.py │ │ ├── code_inject.py │ │ └── grabhashes.py │ ├── Chapter2 │ │ ├── bhnet.py │ │ ├── listing-1-3.py │ │ └── proxy.py │ ├── Chapter3 │ │ ├── .DS_Store │ │ ├── scanner.py │ │ ├── sniffer.py │ │ ├── sniffer_ip_header_decode.py │ │ └── sniffer_with_icmp.py │ ├── Chapter4 │ │ ├── .DS_Store │ │ ├── arper.py │ │ ├── mail_sniffer.py │ │ └── pic_carver.py │ ├── Chapter5 │ │ ├── content_bruter.py │ │ ├── joomla_killer.py │ │ └── web_app_mapper.py │ ├── Chapter6 │ │ ├── .DS_Store │ │ ├── bhp_bing.py │ │ ├── bhp_fuzzer.py │ │ └── jython-standalone-2.7-b1.jar │ ├── Chapter7 │ │ └── git_trojan.py │ ├── Chapter8 │ │ ├── keylogger.py │ │ ├── sandbox_detect.py │ │ ├── screenshotter.py │ │ └── shell_exec.py │ └── Chapter9 │ │ ├── .DS_Store │ │ ├── cred_server.py │ │ ├── decryptor.py │ │ ├── ie_exfil.py │ │ ├── keygen.py │ │ └── mitb.py ├── README.md ├── bh-sshcmd.py ├── bh_sshRcmd.py ├── bh_sshserver.py ├── bhpnet.py ├── proxy.py ├── tcp-client.py ├── tcp-server.py ├── udp-client.py └── untitled-1.py ├── Grey-Hat-Python ├── chapter1-printf.py └── src │ ├── access_violation_handler.py │ ├── addnum.cpp │ ├── addnum.exe │ ├── addnum_function_call.py │ ├── backdoor.py │ ├── backdoor_shell.py │ ├── badchar.py │ ├── buffer_overflow.py │ ├── code_injector.py │ ├── cross_ref.py │ ├── dll_injector.py │ ├── file_fuzzer.py │ ├── file_hider.py │ ├── findinstruction.py │ ├── firefox_hook.py │ ├── func_coverage.py │ ├── ghp_inject.cpp │ ├── ghp_inject.dll │ ├── hippie_easy.py │ ├── injector.py │ ├── ioctl_dump.py │ ├── ioctl_fuzzer.py │ ├── my_debugger.py │ ├── my_debugger_defines.py │ ├── my_ioctl_fuzzer.py │ ├── my_test.py │ ├── printf_loop.py │ ├── printf_random.py │ ├── setup.py │ ├── stack_calc.py │ ├── sulley.zip │ └── upx_unpacker.py ├── README.md ├── Violent-Python ├── Chapter 1 │ ├── banner.py │ ├── crack.py │ ├── dictionary.txt │ ├── evil.zip │ ├── evil │ │ ├── evil.jpg │ │ └── note_to_adam.txt │ ├── os.py │ ├── passwords.txt │ ├── sha512-crack.py │ ├── shadow.txt │ ├── unzip.py │ └── vuln-banners.txt ├── Chapter 2 │ ├── port-scanner.py │ ├── python-nmap.py │ ├── ssh-bot.py │ └── ssh-test.py ├── README.md ├── Violent-Python-Examples │ ├── Chapter-1 │ │ ├── 1-vulnScanner.py │ │ ├── 2-passwdCrack.py │ │ ├── 3-zipCrack.py │ │ ├── dictionary.txt │ │ ├── evil.zip │ │ ├── passwords.txt │ │ └── vuln-banners.txt │ ├── Chapter-2 │ │ ├── 1-portScan.py │ │ ├── 2-nmapScan.py │ │ ├── 3-botNet.py │ │ ├── 3-bruteKey.py │ │ ├── 3-pxsshCommand.py │ │ ├── 3-sshBrute.py │ │ ├── 3-sshCommand.py │ │ ├── 4-anonLogin.py │ │ ├── 4-bruteLogin.py │ │ ├── 4-defaultPages.py │ │ ├── 4-injectPage.py │ │ ├── 4-massCompromise.py │ │ ├── 5-conficker.py │ │ ├── 6-freeFloat.py │ │ ├── pass.txt │ │ └── userpass.txt │ ├── Chapter-3 │ │ ├── 1-discoverNetworks.py │ │ ├── 2-dumpRecycleBin.py │ │ ├── 3-pdfRead.py │ │ ├── 4-exifFetch.py │ │ ├── 5-skypeParse.py │ │ ├── 6-firefoxParse.py │ │ ├── 7-iphoneMessages.py │ │ ├── firefox_profile.zip │ │ └── skype_profile.zip │ ├── Chapter-4 │ │ ├── 1-geoIP.py │ │ ├── 10-idsFoil.py │ │ ├── 2-printDirection.py │ │ ├── 3-geoPrint.py │ │ ├── 4-googleEarthPcap.py │ │ ├── 5-findDDoS.py │ │ ├── 6-spoofDetect.py │ │ ├── 7-testFastFlux.py │ │ ├── 8-testDomainFlux.py │ │ ├── 9-mitnickAttack.py │ │ ├── attack.pcap │ │ ├── domainFlux.pcap │ │ ├── download.pcap │ │ ├── fastFlux.pcap │ │ ├── geotest.kml │ │ ├── geotest.pcap │ │ └── hivemind.pcap │ ├── Chapter-5 │ │ ├── 1-testSniff.py │ │ ├── 10-iphoneFinder.py │ │ ├── 11-rfcommScan.py │ │ ├── 12-sdpScan.py │ │ ├── 13-ninjaPrint.py │ │ ├── 14-blueBug.py │ │ ├── 2-creditSniff.py │ │ ├── 3-hotelSniff.py │ │ ├── 4-googleSniff.py │ │ ├── 5-ftpSniff.py │ │ ├── 6-sniffHidden.py │ │ ├── 6-sniffProbe.py │ │ ├── 7-dup.py │ │ ├── 7-uavSniff.py │ │ ├── 8-fireCatcher.py │ │ ├── 9-btFind.py │ │ ├── 9-btScan.py │ │ └── dup.py │ ├── Chapter-6 │ │ ├── 1-viewPage.py │ │ ├── 10-sendMail.py │ │ ├── 10-sendSpam.py │ │ ├── 2-proxyTest.py │ │ ├── 3-userAgentTest.py │ │ ├── 4-printCookies.py │ │ ├── 5-kittenTest.py │ │ ├── 6-linkParser.py │ │ ├── 7-imageMirror.py │ │ ├── 8-anonGoogle.py │ │ ├── 8-googleJson.py │ │ ├── 8-googleJumbled.py │ │ ├── 9-twitterClass.py │ │ ├── 9-twitterGeo.py │ │ ├── 9-twitterInterests.py │ │ ├── 9-twitterRecon.py │ │ ├── anonBrowser.py │ │ ├── mlb-cities.txt │ │ └── twitterClass.py │ └── Chapter-7 │ │ ├── 1-bindshell.py │ │ └── 2-virusCheck.py └── hello.py └── cybrary ├── Module 2 Apprentice ├── Activities │ ├── Apprentice_Activities.py │ ├── Apprentice_Activities.pyc │ └── Apprentice_Activities_Tester.py └── Final │ └── Apprentice_Final_Activity.py ├── Module 3 Journeyman ├── Activities │ ├── JourneymanActivities.py │ ├── JourneymanActivitiesTester.py │ ├── JourneymanFinal.py │ ├── JourneymanFinalTester.py │ └── JourneymanStringServer.py └── Solutions │ ├── JourneymanActivitiesSolution.py │ └── JourneymanFinalSolution.py ├── Module 4 Advanced ├── Activities │ ├── AdvancedActivities.py │ ├── FinalClient.py │ ├── FinalServer.py │ └── passcracker.py └── Solutions │ ├── AdvancedActivitiesSolution.py │ ├── FinalClientSolution.py │ └── FinalServerSolution.py ├── Module 5 Packet Analyzer ├── PacketAnalyzer.py └── PacketAnalyzerSolution.py └── Module 6 Info Gather ├── InfoGather.py ├── InfoGatherClient.py └── InfoGatherServerSolution.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter10/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter10/bhvulnservice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter10/bhvulnservice.zip -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter10/file_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter10/file_monitor.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter10/process_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter10/process_monitor.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter11/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter11/cmeasure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter11/cmeasure.bin -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter11/code_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter11/code_coverage.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter11/code_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter11/code_inject.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter11/grabhashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter11/grabhashes.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter2/bhnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter2/bhnet.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter2/listing-1-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter2/listing-1-3.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter2/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter2/proxy.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter3/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter3/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter3/scanner.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter3/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter3/sniffer.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter3/sniffer_ip_header_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter3/sniffer_ip_header_decode.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter3/sniffer_with_icmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter3/sniffer_with_icmp.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter4/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter4/arper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter4/arper.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter4/mail_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter4/mail_sniffer.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter4/pic_carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter4/pic_carver.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter5/content_bruter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter5/content_bruter.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter5/joomla_killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter5/joomla_killer.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter5/web_app_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter5/web_app_mapper.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter6/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter6/bhp_bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter6/bhp_bing.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter6/bhp_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter6/bhp_fuzzer.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter6/jython-standalone-2.7-b1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter6/jython-standalone-2.7-b1.jar -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter7/git_trojan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter7/git_trojan.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter8/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter8/keylogger.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter8/sandbox_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter8/sandbox_detect.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter8/screenshotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter8/screenshotter.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter8/shell_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter8/shell_exec.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/.DS_Store -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/cred_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/cred_server.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/decryptor.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/ie_exfil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/ie_exfil.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/keygen.py -------------------------------------------------------------------------------- /Black-Hat-Python/BHP-Code/Chapter9/mitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/BHP-Code/Chapter9/mitb.py -------------------------------------------------------------------------------- /Black-Hat-Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/README.md -------------------------------------------------------------------------------- /Black-Hat-Python/bh-sshcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/bh-sshcmd.py -------------------------------------------------------------------------------- /Black-Hat-Python/bh_sshRcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/bh_sshRcmd.py -------------------------------------------------------------------------------- /Black-Hat-Python/bh_sshserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/bh_sshserver.py -------------------------------------------------------------------------------- /Black-Hat-Python/bhpnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/bhpnet.py -------------------------------------------------------------------------------- /Black-Hat-Python/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/proxy.py -------------------------------------------------------------------------------- /Black-Hat-Python/tcp-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/tcp-client.py -------------------------------------------------------------------------------- /Black-Hat-Python/tcp-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/tcp-server.py -------------------------------------------------------------------------------- /Black-Hat-Python/udp-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/udp-client.py -------------------------------------------------------------------------------- /Black-Hat-Python/untitled-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Black-Hat-Python/untitled-1.py -------------------------------------------------------------------------------- /Grey-Hat-Python/chapter1-printf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/chapter1-printf.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/access_violation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/access_violation_handler.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/addnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/addnum.cpp -------------------------------------------------------------------------------- /Grey-Hat-Python/src/addnum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/addnum.exe -------------------------------------------------------------------------------- /Grey-Hat-Python/src/addnum_function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/addnum_function_call.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/backdoor.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/backdoor_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/backdoor_shell.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/badchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/badchar.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/buffer_overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/buffer_overflow.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/code_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/code_injector.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/cross_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/cross_ref.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/dll_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/dll_injector.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/file_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/file_fuzzer.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/file_hider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/file_hider.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/findinstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/findinstruction.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/firefox_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/firefox_hook.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/func_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/func_coverage.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/ghp_inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/ghp_inject.cpp -------------------------------------------------------------------------------- /Grey-Hat-Python/src/ghp_inject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/ghp_inject.dll -------------------------------------------------------------------------------- /Grey-Hat-Python/src/hippie_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/hippie_easy.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/injector.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/ioctl_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/ioctl_dump.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/ioctl_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/ioctl_fuzzer.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/my_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/my_debugger.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/my_debugger_defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/my_debugger_defines.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/my_ioctl_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/my_ioctl_fuzzer.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/my_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/my_test.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/printf_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/printf_loop.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/printf_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/printf_random.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/setup.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/stack_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/stack_calc.py -------------------------------------------------------------------------------- /Grey-Hat-Python/src/sulley.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/sulley.zip -------------------------------------------------------------------------------- /Grey-Hat-Python/src/upx_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Grey-Hat-Python/src/upx_unpacker.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/README.md -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/banner.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/crack.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/dictionary.txt -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/evil.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/evil.zip -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/evil/evil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/evil/evil.jpg -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/evil/note_to_adam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/evil/note_to_adam.txt -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/os.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/passwords.txt -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/sha512-crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/sha512-crack.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/shadow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/shadow.txt -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/unzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/unzip.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 1/vuln-banners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 1/vuln-banners.txt -------------------------------------------------------------------------------- /Violent-Python/Chapter 2/port-scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 2/port-scanner.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 2/python-nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 2/python-nmap.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 2/ssh-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 2/ssh-bot.py -------------------------------------------------------------------------------- /Violent-Python/Chapter 2/ssh-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Chapter 2/ssh-test.py -------------------------------------------------------------------------------- /Violent-Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/README.md -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/1-vulnScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/1-vulnScanner.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/2-passwdCrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/2-passwdCrack.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/3-zipCrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/3-zipCrack.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/dictionary.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/evil.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/evil.zip -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/passwords.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-1/vuln-banners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-1/vuln-banners.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/1-portScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/1-portScan.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/2-nmapScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/2-nmapScan.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/3-botNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/3-botNet.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/3-bruteKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/3-bruteKey.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/3-pxsshCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/3-pxsshCommand.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/3-sshBrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/3-sshBrute.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/3-sshCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/3-sshCommand.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/4-anonLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/4-anonLogin.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/4-bruteLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/4-bruteLogin.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/4-defaultPages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/4-defaultPages.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/4-injectPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/4-injectPage.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/4-massCompromise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/4-massCompromise.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/5-conficker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/5-conficker.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/6-freeFloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/6-freeFloat.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/pass.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-2/userpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-2/userpass.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/1-discoverNetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/1-discoverNetworks.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/2-dumpRecycleBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/2-dumpRecycleBin.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/3-pdfRead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/3-pdfRead.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/4-exifFetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/4-exifFetch.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/5-skypeParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/5-skypeParse.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/6-firefoxParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/6-firefoxParse.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/7-iphoneMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/7-iphoneMessages.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/firefox_profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/firefox_profile.zip -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-3/skype_profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-3/skype_profile.zip -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/1-geoIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/1-geoIP.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/10-idsFoil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/10-idsFoil.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/2-printDirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/2-printDirection.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/3-geoPrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/3-geoPrint.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/4-googleEarthPcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/4-googleEarthPcap.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/5-findDDoS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/5-findDDoS.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/6-spoofDetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/6-spoofDetect.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/7-testFastFlux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/7-testFastFlux.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/8-testDomainFlux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/8-testDomainFlux.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/9-mitnickAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/9-mitnickAttack.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/attack.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/attack.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/domainFlux.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/domainFlux.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/download.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/download.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/fastFlux.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/fastFlux.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/geotest.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/geotest.kml -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/geotest.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/geotest.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-4/hivemind.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-4/hivemind.pcap -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/1-testSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/1-testSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/10-iphoneFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/10-iphoneFinder.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/11-rfcommScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/11-rfcommScan.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/12-sdpScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/12-sdpScan.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/13-ninjaPrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/13-ninjaPrint.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/14-blueBug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/14-blueBug.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/2-creditSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/2-creditSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/3-hotelSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/3-hotelSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/4-googleSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/4-googleSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/5-ftpSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/5-ftpSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/6-sniffHidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/6-sniffHidden.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/6-sniffProbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/6-sniffProbe.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/7-dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/7-dup.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/7-uavSniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/7-uavSniff.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/8-fireCatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/8-fireCatcher.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/9-btFind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/9-btFind.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/9-btScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/9-btScan.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-5/dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-5/dup.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/1-viewPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/1-viewPage.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/10-sendMail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/10-sendMail.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/10-sendSpam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/10-sendSpam.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/2-proxyTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/2-proxyTest.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/3-userAgentTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/3-userAgentTest.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/4-printCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/4-printCookies.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/5-kittenTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/5-kittenTest.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/6-linkParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/6-linkParser.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/7-imageMirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/7-imageMirror.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/8-anonGoogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/8-anonGoogle.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/8-googleJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/8-googleJson.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/8-googleJumbled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/8-googleJumbled.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterClass.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterGeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterGeo.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterInterests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterInterests.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterRecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/9-twitterRecon.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/anonBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/anonBrowser.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/mlb-cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/mlb-cities.txt -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-6/twitterClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-6/twitterClass.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-7/1-bindshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-7/1-bindshell.py -------------------------------------------------------------------------------- /Violent-Python/Violent-Python-Examples/Chapter-7/2-virusCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/Violent-Python/Violent-Python-Examples/Chapter-7/2-virusCheck.py -------------------------------------------------------------------------------- /Violent-Python/hello.py: -------------------------------------------------------------------------------- 1 | print "Hello World" 2 | -------------------------------------------------------------------------------- /cybrary/Module 2 Apprentice/Activities/Apprentice_Activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 2 Apprentice/Activities/Apprentice_Activities.py -------------------------------------------------------------------------------- /cybrary/Module 2 Apprentice/Activities/Apprentice_Activities.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 2 Apprentice/Activities/Apprentice_Activities.pyc -------------------------------------------------------------------------------- /cybrary/Module 2 Apprentice/Activities/Apprentice_Activities_Tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 2 Apprentice/Activities/Apprentice_Activities_Tester.py -------------------------------------------------------------------------------- /cybrary/Module 2 Apprentice/Final/Apprentice_Final_Activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 2 Apprentice/Final/Apprentice_Final_Activity.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Activities/JourneymanActivities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Activities/JourneymanActivities.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Activities/JourneymanActivitiesTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Activities/JourneymanActivitiesTester.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Activities/JourneymanFinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Activities/JourneymanFinal.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Activities/JourneymanFinalTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Activities/JourneymanFinalTester.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Activities/JourneymanStringServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Activities/JourneymanStringServer.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Solutions/JourneymanActivitiesSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Solutions/JourneymanActivitiesSolution.py -------------------------------------------------------------------------------- /cybrary/Module 3 Journeyman/Solutions/JourneymanFinalSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 3 Journeyman/Solutions/JourneymanFinalSolution.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Activities/AdvancedActivities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Activities/AdvancedActivities.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Activities/FinalClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Activities/FinalClient.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Activities/FinalServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Activities/FinalServer.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Activities/passcracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Activities/passcracker.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Solutions/AdvancedActivitiesSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Solutions/AdvancedActivitiesSolution.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Solutions/FinalClientSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Solutions/FinalClientSolution.py -------------------------------------------------------------------------------- /cybrary/Module 4 Advanced/Solutions/FinalServerSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 4 Advanced/Solutions/FinalServerSolution.py -------------------------------------------------------------------------------- /cybrary/Module 5 Packet Analyzer/PacketAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 5 Packet Analyzer/PacketAnalyzer.py -------------------------------------------------------------------------------- /cybrary/Module 5 Packet Analyzer/PacketAnalyzerSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 5 Packet Analyzer/PacketAnalyzerSolution.py -------------------------------------------------------------------------------- /cybrary/Module 6 Info Gather/InfoGather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 6 Info Gather/InfoGather.py -------------------------------------------------------------------------------- /cybrary/Module 6 Info Gather/InfoGatherClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 6 Info Gather/InfoGatherClient.py -------------------------------------------------------------------------------- /cybrary/Module 6 Info Gather/InfoGatherServerSolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatEidolon/Python/HEAD/cybrary/Module 6 Info Gather/InfoGatherServerSolution.py --------------------------------------------------------------------------------