mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-09 02:16:46 +00:00
Hook up disconnected FLEXnet checks
This commit is contained in:
@@ -171,6 +171,11 @@ namespace BinaryObjectScanner.Protection
|
||||
if (cDilla != null)
|
||||
results.AddRange(cDilla);
|
||||
|
||||
// Run C-Dilla directory checks
|
||||
var flexNet = FLEXNetCheckDirectoryPath(path, files);
|
||||
if (flexNet != null)
|
||||
results.AddRange(flexNet);
|
||||
|
||||
// Run RipGuard directory checks
|
||||
var ripGuard = RipGuardCheckDirectoryPath(path, files);
|
||||
if (ripGuard != null)
|
||||
@@ -212,6 +217,11 @@ namespace BinaryObjectScanner.Protection
|
||||
if (!string.IsNullOrEmpty(cDilla))
|
||||
resultsList.Add(cDilla!);
|
||||
|
||||
// Run FLEXnet file checks
|
||||
var flexNet = FLEXNetCheckFilePath(path);
|
||||
if (!string.IsNullOrEmpty(flexNet))
|
||||
resultsList.Add(flexNet!);
|
||||
|
||||
// Run RipGuard file checks
|
||||
var ripGuard = RipGuardCheckFilePath(path);
|
||||
if (!string.IsNullOrEmpty(ripGuard))
|
||||
|
||||
Reference in New Issue
Block a user