Learn how to develop your own ethical hacking tools using Python, including password crackers, brute force scripts, information gathering tools, sniffing and much more.
Learning how to hide secret data in images using Steganography least significant bit technique in Python.
Learning how to build a Python script to scan for subdomains of a given domain using requests library.
Building a crawler to extract all website internal and external links using requests, requests_html and beautiful soup in Python.
Encrypting and decrypting files in Python using symmetric encryption scheme with cryptography library.
Building a reverse shell in Python using sockets that can execute remote shell commands and send the results back to the server.
Sniffing and printing HTTP packet information, such as the url and raw data ( passwords, search queries, etc. ) in case the method is POST.
Forcing devices to disconnect from a network by sending deauthentication frames continuously using Scapy library in Python, this is called deauthentication attack.
Writing a DNS spoofer script in Python using Scapy library to successfully change DNS cache of a target machine in the same network.
Creating fake access points and fooling nearby devices by sending valid beacon frames to the air using scapy in python.
Learn how to write a port scanner in Python using sockets, starting with a simple port scanner and then diving deeper to a threaded version of a port scanner that is reliable for use.