We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a07fc commit 6661c48Copy full SHA for 6661c48
BinaryObjectScanner/Protection/Denuvo.cs
@@ -90,7 +90,9 @@ public class Denuvo : IExecutableCheck<PortableExecutable>, IPathCheck
90
91
// TODO: Re-enable all Entry Point checks after implementing
92
if (pex.ContainsSection(".arch")
93
- || pex.ContainsSection(".srdata")
+ // Disabled scanning in files with the ".srdata" section due to numerous false positives.
94
+ // These include Redump entry 112733 and Bus Hound 5.04 (https://web.archive.org/web/20070129204350/http://www.perisoft.net/bin/bhe504.exe).
95
+ // || pex.ContainsSection(".srdata")
96
|| !string.IsNullOrEmpty(timingMatch))
97
{
98
if (pex.Model.OptionalHeader?.Magic == OHMN.PE32Plus)
0 commit comments