Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed invalid structure parameters #1931

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

alexisbalbachan
Copy link
Collaborator

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:

_ will not pack the field. Accepts a third argument, which is an unpack code. See _Test_UnpackCode for an example

however all the offending structures have the following format '?-field' with ? being any struct size specifier (B|H|L):

?-field length of field named 'field', formatted as specified with ? ('?' may be '!H' for example). The input value overrides the real length

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:

two = format.split('=')
if len(two) >= 2:
try:
return self.pack(two[0], data)
except:
fields = {'self':self}
fields.update(self.fields)
return self.pack(two[0], eval(two[1], {}, fields))

if format[:1] == '_':
if dataClassOrCode != b:
fields = {'self':self, 'inputDataLeft':data}
fields.update(self.fields)
return eval(dataClassOrCode, {}, fields)
else:
return None

@anadrianmanrique anadrianmanrique self-assigned this Mar 27, 2025
@anadrianmanrique anadrianmanrique added the bug Unexpected problem or unintended behavior label Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Unexpected problem or unintended behavior
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants