-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a humongous bug in cuckoomon -- amazed not a single person spotte…
…d this in years. Basically, any API resolved at runtime would simply not be hooked at all because of a string matching failure -- the wcsnicmp() in the code was using names from LdrLoadDll that had .dll appended to them, the length of that name, and trying to force a comparison against dll name strings without .dll appended -- it simply would never match. So instead you'd end up with loads of Native API hooks triggering because those were the only ones it was able to put in place. Reported upstream.
- Loading branch information
Showing
2 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters