-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathN_Scan.txt
More file actions
24 lines (19 loc) · 969 Bytes
/
N_Scan.txt
File metadata and controls
24 lines (19 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
How a network can be scanned?
1. Create a ARP packet with the target IP address,
2. Create a Ethernet Frame with Target MAC address,(the ARP packet will be sent to all devices in the local network.
3. Combine the ARP & Ethernet,
4. Send the packets and receive the responses,
5. Extract IP & MAC addresses from the responses,
6. Return the list of clients,
7. Print the scan result.
Execution :
Input will be an IP address and output will be the scanned report for all networks under that IP address.
Key difference:
IP - it's a numerical lebel assign to each devices connected to a computer network that uses some protocol.
MAC - it's a unique identifier assign to the network interface of a device, By the Manufacturer.
What is ARP?
Address Resolution Protocol, it's used to map a an IP address to a MAC address.
Features:
This project discovers devices on a network,
It captures the network packets,
Saves the captured packets to a file.