We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug reported by @DidierStevens:
oletools/oletools/olevba.py
Line 1372 in 49b35ec
The following code:
decompressed_container.extend([compressed_container[compressed_current:compressed_current + 4096]])
should be:
decompressed_container.extend(compressed_container[compressed_current:compressed_current + 4096])
The text was updated successfully, but these errors were encountered:
0286347
olevba: fixed bug when decompressing raw chunks in VBA (fixes decalag…
5321d95
…e2#575)
decalage2
No branches or pull requests
Bug reported by @DidierStevens:
oletools/oletools/olevba.py
Line 1372 in 49b35ec
The following code:
should be:
The text was updated successfully, but these errors were encountered: