├── 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 │ ├── tcp-client.py │ ├── tcp-server.py │ └── udp-client.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 ├── bhpnet.py └── proxy.py /BHP-Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter10/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter10/bhvulnservice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter10/bhvulnservice.zip -------------------------------------------------------------------------------- /BHP-Code/Chapter10/file_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter10/file_monitor.py -------------------------------------------------------------------------------- /BHP-Code/Chapter10/process_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter10/process_monitor.py -------------------------------------------------------------------------------- /BHP-Code/Chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter11/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter11/cmeasure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter11/cmeasure.bin -------------------------------------------------------------------------------- /BHP-Code/Chapter11/code_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter11/code_coverage.py -------------------------------------------------------------------------------- /BHP-Code/Chapter11/code_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter11/code_inject.py -------------------------------------------------------------------------------- /BHP-Code/Chapter11/grabhashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter11/grabhashes.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/bhnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/bhnet.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/listing-1-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/listing-1-3.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/proxy.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/tcp-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/tcp-client.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/tcp-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/tcp-server.py -------------------------------------------------------------------------------- /BHP-Code/Chapter2/udp-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter2/udp-client.py -------------------------------------------------------------------------------- /BHP-Code/Chapter3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter3/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter3/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter3/scanner.py -------------------------------------------------------------------------------- /BHP-Code/Chapter3/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter3/sniffer.py -------------------------------------------------------------------------------- /BHP-Code/Chapter3/sniffer_ip_header_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter3/sniffer_ip_header_decode.py -------------------------------------------------------------------------------- /BHP-Code/Chapter3/sniffer_with_icmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter3/sniffer_with_icmp.py -------------------------------------------------------------------------------- /BHP-Code/Chapter4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter4/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter4/arper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter4/arper.py -------------------------------------------------------------------------------- /BHP-Code/Chapter4/mail_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter4/mail_sniffer.py -------------------------------------------------------------------------------- /BHP-Code/Chapter4/pic_carver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter4/pic_carver.py -------------------------------------------------------------------------------- /BHP-Code/Chapter5/content_bruter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter5/content_bruter.py -------------------------------------------------------------------------------- /BHP-Code/Chapter5/joomla_killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter5/joomla_killer.py -------------------------------------------------------------------------------- /BHP-Code/Chapter5/web_app_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter5/web_app_mapper.py -------------------------------------------------------------------------------- /BHP-Code/Chapter6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter6/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter6/bhp_bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter6/bhp_bing.py -------------------------------------------------------------------------------- /BHP-Code/Chapter6/bhp_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter6/bhp_fuzzer.py -------------------------------------------------------------------------------- /BHP-Code/Chapter6/jython-standalone-2.7-b1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter6/jython-standalone-2.7-b1.jar -------------------------------------------------------------------------------- /BHP-Code/Chapter7/git_trojan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter7/git_trojan.py -------------------------------------------------------------------------------- /BHP-Code/Chapter8/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter8/keylogger.py -------------------------------------------------------------------------------- /BHP-Code/Chapter8/sandbox_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter8/sandbox_detect.py -------------------------------------------------------------------------------- /BHP-Code/Chapter8/screenshotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter8/screenshotter.py -------------------------------------------------------------------------------- /BHP-Code/Chapter8/shell_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter8/shell_exec.py -------------------------------------------------------------------------------- /BHP-Code/Chapter9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/.DS_Store -------------------------------------------------------------------------------- /BHP-Code/Chapter9/cred_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/cred_server.py -------------------------------------------------------------------------------- /BHP-Code/Chapter9/decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/decryptor.py -------------------------------------------------------------------------------- /BHP-Code/Chapter9/ie_exfil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/ie_exfil.py -------------------------------------------------------------------------------- /BHP-Code/Chapter9/keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/keygen.py -------------------------------------------------------------------------------- /BHP-Code/Chapter9/mitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/BHP-Code/Chapter9/mitb.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/README.md -------------------------------------------------------------------------------- /bhpnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/bhpnet.py -------------------------------------------------------------------------------- /proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllGloryToTheHypnotoad/Black-Hat-Python/HEAD/proxy.py --------------------------------------------------------------------------------