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
Currently, we open a socket to a TCP port. SYN + SYN_ACK + ACK. This results in an established connection to the host, which in turn may result in a log entry on that host. This is not desirable.
Instead, we should terminate the connection right after receipt of a SYN_ACK with an RST. This will not result in log entries being created.
The text was updated successfully, but these errors were encountered:
Currently, we open a socket to a TCP port. SYN + SYN_ACK + ACK. This results in an established connection to the host, which in turn may result in a log entry on that host. This is not desirable.
Instead, we should terminate the connection right after receipt of a SYN_ACK with an RST. This will not result in log entries being created.
The text was updated successfully, but these errors were encountered: