mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-17 14:25:12 +00:00
Don't check files with ".srdata" section for Denuvo (#351)
Prone to too many false positives.
This commit is contained in:
committed by
GitHub
parent
f2a07fc088
commit
6661c48428
@@ -90,7 +90,9 @@ namespace BinaryObjectScanner.Protection
|
||||
|
||||
// TODO: Re-enable all Entry Point checks after implementing
|
||||
if (pex.ContainsSection(".arch")
|
||||
|| pex.ContainsSection(".srdata")
|
||||
// Disabled scanning in files with the ".srdata" section due to numerous false positives.
|
||||
// These include Redump entry 112733 and Bus Hound 5.04 (https://web.archive.org/web/20070129204350/http://www.perisoft.net/bin/bhe504.exe).
|
||||
// || pex.ContainsSection(".srdata")
|
||||
|| !string.IsNullOrEmpty(timingMatch))
|
||||
{
|
||||
if (pex.Model.OptionalHeader?.Magic == OHMN.PE32Plus)
|
||||
|
||||
Reference in New Issue
Block a user