You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The source and destination port on these two packets are swapped.
To fix it I changed the following lines:
OLD lines:
236 sport = packet[UDP].sport
237 dport = packet[UDP].dport
279 sport = packet[UDP].sport
280 dport = packet[UDP].dport
NEW lines:
236 sport = packet[UDP].dport
237 dport = packet[UDP].sport
279 sport = packet[UDP].dport
280 dport = packet[UDP].sport
The text was updated successfully, but these errors were encountered:
The source and destination port on these two packets are swapped.
To fix it I changed the following lines:
OLD lines:
236 sport = packet[UDP].sport
237 dport = packet[UDP].dport
279 sport = packet[UDP].sport
280 dport = packet[UDP].dport
NEW lines:
236 sport = packet[UDP].dport
237 dport = packet[UDP].sport
279 sport = packet[UDP].dport
280 dport = packet[UDP].sport
The text was updated successfully, but these errors were encountered: