-
Notifications
You must be signed in to change notification settings - Fork 520
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
Wrong assumption while parsing rich header #394
Comments
All bytes between "DanS" (inclusive) and "Rich" (exclusive) are XORed with the checksum, but nothing else is, in particular the padding after the checksum is not. The checksum should probably be obtained as the four bytes after "Rich"; then the following better check could be done:
The Rich header is not documented, but Microsoft being the originator does use the above format, so it is useful. I have done a PR #402 to make it a warning. Also, is the file you reference WIMA_SFX.EXE? |
@j-t-1 yes, the file |
I think #402 is ok. |
pefile
assumes that the 12 bytes following theDanS
tag are actually three copies of the 32-bits XOR key used for encrypting the rich header, and it does some validation based in this assumption:pefile/pefile.py
Lines 3429 to 3430 in d86b96e
The origin of this assumption seems to be this article: http://www.ntcore.com/files/richsign.htm, and YARA had this same issue. However, while rewriting the parsing logic in YARA-X I came across this other article that suggests that those 12-bytes are actually padding: https://bytepointer.com/articles/the_microsoft_rich_header.htm.
In YARA-X I treated those bytes as padding, and now, while comparing YARA and YARA-X results side-by-side, I found that file
043066108b68b30fc2c475eae8edfafc080be7d451600eaa283d2c750bddbceb
proves that the padding theory is correct. The padding in that file was not initially filled with zeroes, therefore the 12 bytes after theDanS
tag don't contain copies of the XOR key.I had to fix this same issue in YARA: VirusTotal/yara@4793b49
The text was updated successfully, but these errors were encountered: