added <em> swag

This commit is contained in:
Palma Solutions LTD
2017-10-19 13:03:38 +02:00
parent a33f682a9a
commit 89de1533d7

View File

@@ -1,12 +1,12 @@
<?php
/*
[+] Malware Scanner version 3.0
[+] May 2017
[+] Malware Scanner version 3.1
[+] October 2017
[+] by Malin Cenusa
*/
/* script variables */
$version = '3.0';
$version = '3.1';
$self = basename(__FILE__);
$eroot = '../';
@@ -540,7 +540,7 @@ foreach ($tree as $finfo)
foreach($pattern as $regex){
if(preg_match('#'.$regex.'#i', $tmp, $matches)){
if($print_infected) print "{$finfo['path']}{$finfo['fname']}";
if($print_infected || $print_all) print "...SUSPECTED String: ".$regex." ";
if($print_infected || $print_all) print "<em>...SUSPECTED String: ".$regex."</em>";
$counter_suspected++;
if($print_infected || $print_all) print "\n";
continue;