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 remove_header function works properly only when the packet header is in the beginning. However, other cases are still not being properly removed. Considering the following packet header arriving:
Ethernet -> IPv4 -> TCP -> Data
If for some reason we want tao remove TCP and keep the rest, ideally case would be:
Ethernet -> IPv4 -> Data
However, currently macsad removes part of Ethernet header, cause it found the TCP header and removed the size of the TCP header from the beginning of the packet. The result would be:
Ethernet (part of it) -> IPv4 -> TCP -> Data
We plan to enhance the remove_header support.
The text was updated successfully, but these errors were encountered:
The remove_header function works properly only when the packet header is in the beginning. However, other cases are still not being properly removed. Considering the following packet header arriving:
Ethernet -> IPv4 -> TCP -> Data
If for some reason we want tao remove TCP and keep the rest, ideally case would be:
Ethernet -> IPv4 -> Data
However, currently macsad removes part of Ethernet header, cause it found the TCP header and removed the size of the TCP header from the beginning of the packet. The result would be:
Ethernet (part of it) -> IPv4 -> TCP -> Data
We plan to enhance the remove_header support.
The text was updated successfully, but these errors were encountered: