├── README.md ├── codes ├── ex1.py ├── ex2.py ├── ex4.py ├── ex5.py ├── ex6.py └── ex7.py └── examples ├── argparse_example.py ├── flask_service.py ├── icmp_server.py ├── interactive_nmap.py ├── nmap_handler.py ├── socket_client.py ├── socket_server.py ├── struct_example.py ├── telnet_cracker.py └── wordlist_reader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/README.md -------------------------------------------------------------------------------- /codes/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex1.py -------------------------------------------------------------------------------- /codes/ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex2.py -------------------------------------------------------------------------------- /codes/ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex4.py -------------------------------------------------------------------------------- /codes/ex5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex5.py -------------------------------------------------------------------------------- /codes/ex6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex6.py -------------------------------------------------------------------------------- /codes/ex7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/codes/ex7.py -------------------------------------------------------------------------------- /examples/argparse_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/argparse_example.py -------------------------------------------------------------------------------- /examples/flask_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/flask_service.py -------------------------------------------------------------------------------- /examples/icmp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/icmp_server.py -------------------------------------------------------------------------------- /examples/interactive_nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/interactive_nmap.py -------------------------------------------------------------------------------- /examples/nmap_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/nmap_handler.py -------------------------------------------------------------------------------- /examples/socket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/socket_client.py -------------------------------------------------------------------------------- /examples/socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/socket_server.py -------------------------------------------------------------------------------- /examples/struct_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/struct_example.py -------------------------------------------------------------------------------- /examples/telnet_cracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/telnet_cracker.py -------------------------------------------------------------------------------- /examples/wordlist_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halit/python-for-hackers/HEAD/examples/wordlist_reader.py --------------------------------------------------------------------------------