From e9fa01596211906b60145ac29aa213b3479a70a1 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Thu, 10 May 2018 10:39:56 +0200 Subject: [PATCH] fix: do not probe while arp.spoofing, fixes arp.spoof on the whole subnet --- modules/arp_spoof.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } }