We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abccef5 commit ec668acCopy full SHA for ec668ac
README.md
@@ -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
+[](https://i.imgur.com/a3xkBsU.png)
38
39
+@LasCC
0 commit comments