Skip to content

Commit 5b6ef59

Browse files
committed
Added Instructions for Network Scanner
1 parent 689b9ab commit 5b6ef59

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

Network Scanner/README.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Network-Scanner
2+
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
21+
22+
```bash
23+
root@kali:~/Desktop/Network Scanner# python3 network_scanner.py -t 10.0.2.3
24+
-----------------------------------
25+
IP Address MAC Address
26+
-----------------------------------
27+
10.0.2.3 08:00:27:24:58:5a
28+
```
29+
30+
**OR**
31+
```bash
32+
root@kali:~/Desktop/Network Scanner# python3 network_scanner.py --target 10.0.2.3
33+
-----------------------------------
34+
IP Address MAC Address
35+
-----------------------------------
36+
10.0.2.3 08:00:27:24:58:5a
37+
```
38+
39+
40+
#### Output of the Script for a range of target IP Address
41+
42+
```bash
43+
root@kali:~/Desktop/Network Scanner# python3 network_scanner.py --target 10.0.2.1/24
44+
-----------------------------------
45+
IP Address MAC Address
46+
-----------------------------------
47+
10.0.2.1 52:54:00:12:35:00
48+
10.0.2.2 52:54:00:12:35:00
49+
10.0.2.15 08:00:27:e6:e5:59
50+
10.0.2.3 08:00:27:24:58:5a
51+
```
52+

0 commit comments

Comments
 (0)