skelsec / minidump

Python library to parse and read Microsoft minidump file format
MIT License
271 stars 55 forks source link

Case insensitive module search #27

Closed physics-sec closed 2 years ago

physics-sec commented 2 years ago

Some DLLs have very weird capitalization (for example: cloudAP.DLL), this small change fixes those cases in which minidump doesn't find a module that is actually included in the dump file.

Note: this PR lies on top of this one

skelsec commented 2 years ago

Good point, I was debating this myself before but I was like... meh. But since you said it could be a problem I don't see why not.

physics-sec commented 2 years ago

Thank you!