From 06374513907456a35c5e0b05c22f0d5f87027245 Mon Sep 17 00:00:00 2001 From: Azrotronik <60074481+Azrotronik@users.noreply.github.com> Date: Sun, 27 Jun 2021 00:17:42 +0000 Subject: [PATCH] Fix arp.spoof not sending replies Fixed arp.spoof not sending replies and timing out when asked to shut down. --- modules/arp_spoof/arp_spoof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/arp_spoof/arp_spoof.go b/modules/arp_spoof/arp_spoof.go index 49be7a6f..94aa7754 100644 --- a/modules/arp_spoof/arp_spoof.go +++ b/modules/arp_spoof/arp_spoof.go @@ -175,7 +175,7 @@ func (mod *ArpSpoofer) Start() error { gwIP := mod.Session.Gateway.IP myMAC := mod.Session.Interface.HW for mod.Running() { - mod.arpSpoofTargets(gwIP, myMAC, true, true) + mod.arpSpoofTargets(gwIP, myMAC, true, false) for _, address := range neighbours { if !mod.Session.Skip(address) { mod.arpSpoofTargets(address, myMAC, true, false)