Skip to main content
Format code
Source Link
Stephen Rauch
  • 4.3k
  • 15
  • 24
  • 33

I'veWe had the same issue here, and it turns out we forgot to check one condition.

Just add this line before all the if blocks if pkt.haslayer(ARP):

if pkt.haslayer(ARP):

I've had the same issue here, turns out we forgot to check one condition.

Just add this line before all the if blocks if pkt.haslayer(ARP):

We had the same issue here, and it turns out we forgot to check one condition.

Just add this line before all the if blocks:

if pkt.haslayer(ARP):
Source Link

I've had the same issue here, turns out we forgot to check one condition.

Just add this line before all the if blocks if pkt.haslayer(ARP):