ubuntu:network:check_promiscuous
This is an old revision of the document!
Ubuntu - Network - Check Promiscuous
Promiscuous mode allows a network device to intercept and read each network packet that arrives in its entirety. This mode of operation is sometimes given to a network snoop server that captures and saves all packets for analysis (for example, for monitoring network usage).
Promiscuous mode can be used in a malicious way to sniff on a network.
#!/bin/bash # # Scans ethernet cards if they are in Promisuous mode. # # every half hour. while true do for i in eth0 eth1 do if ifconfig $i | grep PROMISC > /dev/null then (echo $i Promisc;fpromisc) 2>&1 | Mail \ -s PROMCUOUS sysadmin sysadmin@sharewiz.net fi done sleep 1800 done
ubuntu/network/check_promiscuous.1594805433.txt.gz ยท Last modified: 2020/07/15 09:30 by 127.0.0.1