Removed invalid structure parameters #1931
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related to #1876
Several smb structures contain a FileNameLength field which is specified by 3 parameters. However for the third parameter to be ever used, the second parameter has to have a specific syntax, this was not the case.
This PR removes the third parameter from those fields, it shouldn't have any splash damage as they were not being used
Additional Info
structure.py specifies that formats with a '_' in their values will use a third parameter:
impacket/impacket/structure.py
Line 73 in ae0ec30
however all the offending structures have the following format '?-field' with ? being any struct size specifier (B|H|L):
impacket/impacket/structure.py
Line 69 in ae0ec30
so they don't need a third parameter.
If we inspect structure.py, the only time were functions are being evaluated is when format either contains '_' or '=', it wasn't the case in the modified structures:
impacket/impacket/structure.py
Lines 203 to 210 in ae0ec30
impacket/impacket/structure.py
Lines 307 to 313 in ae0ec30