Skip to content

Commit ec668ac

Browse files
authored
Create README.md
1 parent abccef5 commit ec668ac

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Network Scanner
2+
3+
- Scan all the current IP on your network with their MAC address
4+
5+
# Tech part
6+
7+
This script uses a number of open source projects to work properly:
8+
9+
- scapy
10+
- argparse
11+
- python
12+
13+
### Installation
14+
15+
```
16+
pip install scapy
17+
pip install argparse
18+
```
19+
20+
### Usage
21+
22+
```
23+
usage: main.py [-h] [-i TARGET]
24+
25+
optional arguments:
26+
-h, --help show this help message and exit
27+
-i TARGET, --ip TARGET
28+
Target IP / IP Range
29+
```
30+
31+
```
32+
python main.py -i 192.168.1.1/24
33+
```
34+
35+
### Pictures
36+
37+
[![N|Solid](https://i.imgur.com/a3xkBsU.png)](https://i.imgur.com/a3xkBsU.png)
38+
39+
@LasCC

0 commit comments

Comments
 (0)