diff --git a/modules/arp_spoof.go b/modules/arp_spoof.go index 00f99383..b664d0ba 100644 --- a/modules/arp_spoof.go +++ b/modules/arp_spoof.go @@ -140,10 +140,10 @@ func (p *ArpSpoofer) Start() error { gwIP := p.Session.Gateway.IP myMAC := p.Session.Interface.HW for p.Running() { - p.sendArp(gwIP, myMAC, true, true) + p.sendArp(gwIP, myMAC, true, false) for _, address := range neighbours { if !p.Session.Skip(address) { - p.sendArp(address, myMAC, true, true) + p.sendArp(address, myMAC, true, false) } }