Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sohyp3/network-scanner
a tool that gets the devices in the network and scans the open ports
https://github.com/sohyp3/network-scanner
fping network network-analysis nmap python
Last synced: 6 days ago
JSON representation
a tool that gets the devices in the network and scans the open ports
- Host: GitHub
- URL: https://github.com/sohyp3/network-scanner
- Owner: sohyp3
- Created: 2023-12-07T15:03:33.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-12T09:44:36.000Z (about 1 year ago)
- Last Synced: 2023-12-12T10:33:38.584Z (about 1 year ago)
- Topics: fping, network, network-analysis, nmap, python
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Network Scanner
a Simple tool that scans the network for the connected devices using `fping` then scans each device's open port using `nmap` then saves it to a csv files# Requirements:
1. `linux`
2. `python3`
3. `nmap`
4. `fping`
5. `net-tools` (_ifconfig_)# To Run it:
* `git clone https://github.com/sohyp3/network-scanner`
* `cd network-scanner`
* `sudo python3 app.py`
* it will create two files
1. `ips.csv` the ips of the devices in your network
2. `ports.csv` the open ports for each ip### The Commands the scripts uses:
1. `fping -q -a -g [network/subnet] -r 0`
2. `nmap -sS -n --host-timeout 30s [deviceip]`