Tools for diagnosis, observing, and scouting
https://mycourses.rit.edu/d2l/le/content/686133/viewContent/5035265/View
PyTrace is a pure python implementation of traceroute. Current features are
- ICMP based packet delivery
- Estimated Round Trips
- Domain name represnetation of visisted points
Sadly with the use of ICMP base messaging, one must have root access in order to run the command
python3 setup.py install
python3 setup.py develop
To use pytrace run:
sudo pytrace 8.8.8.8
or you can use the domain name
sudo pytrace www.w3schools.com
go to moa/trace/ and execute:
python3 command.py [arguments]
A Tool for OS enumeration and detection
- Detects OS based off of TTL from a ping
- Regex to verify proper IPv4 formatting
- Ability to read a file with -l flag
bash OS_Tool.sh
bash OS_Tool.sh -l <IP_List.txt>
A Tool for detecting hosts on a given network.
ipcalc
Ping sweep takes two IP range formats.
#Traditional Range
bash ping_sweep 192.168.1.0-192.168.1.255
#CIDR notation
bash ping_sweep 192.168.1.0/24
A tools for scannning ports on a host in a particular network
#Traditional Range
.\PortScan.ps1 192.168.1.1-192.168.1.5 20,80
#Cidr Notation
.\PortScan.ps1 192.168.1.0/24
Does Priv Sec Things
bash easy_privsec