-
-
Notifications
You must be signed in to change notification settings - Fork 82
Closed
Labels
Description
When i do this command
$loader = new \phpMussel\Core\Loader(
'storage/phpMussel/phpmussel.yml',
'storage/phpMussel/cache',
'storage/phpMussel/quarantine',
'storage/phpMussel/signatures',
'vendor'
);
$scanner = new \phpMussel\Core\Scanner($loader);
$results = $scanner->scan(['test.jpg' => 'tests/storage/safe-files/test.jpg'], 3 /* array format */);
I get that result
array:1 [
"37aa7ab73da281c1414b701f89a1417ed447a601b7c7226863e6f78d5a854ec1:860199:test.jpg" => "Detected ZBB-HTML.Defacement.D3BX-00 (test.jpg)!"
]
Here's the file that cause this false positive (I don't know if github will parse it so here's the sha1 sum : 6e8511da59b688343ea3911ccef060fc5a99ce36)
WilliamBelleau and qran253