Implementation of three tools in Python using the Scapy library: Port scanner, Sniffer and DOS simulator. The tools run specificaly in unix-based systems, all tests were done using virtual machines with VirtualBox NAT network environments.
$ git clone https://github.com/alexandreclem/CyberTools-with-Python.git
- Scapy Library
- Run:
$ python -m pip install scapy
- Run:
- Tkinter Library
- Run:
$ python -m pip install tk
- Run:
- Virtualized Environment using VirtualBox
- NAT Network
- IP - 10.0.2.0/24
- xubuntu_1 - IP 10.0.2.5 / Interface enp0s9 (Attacker)
- xubuntu_2 - IP 10.0.2.4 / Interface enp0s9
- xubuntu_2 - Apache Server in the 80 port
- NAT Network
- Give execution permission to all directories
- Within the src directory, run:
$ sudo chmod -R 777 ./dos $ sudo chmod -R 777 ./port_scan $ sudo chmod -R 777 ./sniffing
- Within the src directory, run:
- DOS
- Within the src/dos directory, run:
$ sudo ./dos.py
- Within the src/dos directory, run:
- Port Scanner
- Within the src/port_scan directory, run:
$ sudo ./port_scan.py
- Within the src/port_scan directory, run:
- Sniffing
- Within the src/sniffing directory, run:
$ sudo ./sniffing.py
- Within the src/sniffing directory, run: