Advertisement
Guest User

Debian Ethernet Arp receta

a guest
Jul 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # Linux: Show / Display Available Network Interfaces
  2. # https://www.cyberciti.biz/faq/linux-list-network-interfaces-names-command/
  3. /sbin/ifconfig -a
  4. netstat -i
  5. ip link show
  6.  
  7. # Use arpscan to find devices on lan
  8. # https://www.blackmoreops.com/2015/12/31/use-arp-scan-to-find-hidden-devices-in-your-network/
  9. sudo arp-scan --interface=wlan0 10.0.1.0/24
  10.  
  11. # arp-scan para Debian 9.5 livecd
  12. wget http://ftp.us.debian.org/debian/pool/main/a/arp-scan/arp-scan_1.9-1_i386.deb
  13. wget http://ftp.us.debian.org/debian/pool/main/i/ieee-data/ieee-data_20160613.1_all.deb
  14. wget http://ftp.us.debian.org/debian/pool/main/libp/libpcap/libpcap0.8_1.8.1-3_i386.deb
  15. sudo apt-get install ./libpcap0.8_1.8.1-3_i386.deb ./arp-scan_1.9-1_i386.deb ./ieee-data_20160613.1_all.deb
  16.  
  17. # What Is ARP Spoofing? — Attacks, Detection, And Prevention
  18. # https://fossbytes.com/arp-spoofing-attacks-detection-prevention/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement