You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Python script that scans a network for connected devices.
3
+
4
+
## Setup
5
+
6
+
Download this repository and run it locally,
7
+
8
+
```bash
9
+
python3 network_scanner.py -t ip_address
10
+
or
11
+
python3 network_scanner.py --target ip_address
12
+
```
13
+
where ip_address is the IP Address of the target machine. Example: 10.0.2.1
14
+
15
+
The script also accepts a range of ip addresses to be scanned for. For that in the ip_address field you need to provide the range. Example: 10.0.2.1/24
16
+
This tells the script that start scanning from 10.0.2.1 to 10.0.2.254
17
+
18
+
## Output
19
+
20
+
#### Output of the Script for a single target IP Address
0 commit comments