This commit is contained in:
root
2020-01-27 16:57:03 +01:00
parent 755e9112dc
commit d96bee3162
2 changed files with 7 additions and 2 deletions

View File

@@ -4,6 +4,11 @@ LP MSH Scanner
Made by Malin Cenusa
January 2020 - v6.1.0
CHANGES:
- removed the cPanel specific path from malwaresh.pl
February 2019 - v6.0.0
CHANGES:

View File

@@ -1491,8 +1491,8 @@ my @base64_decodes = (
my @file_list;
my %possible_list;
my $start_dir = "/home/$user/public_html/";
$start_dir =~ s/\/cgi-bin//;
my $start_dir = "$user";
$start_dir =~ s/\/LP-MSH-Scanner//;
$start_dir =~ s/\/lp-msh-scanner//;
$start_dir = substr($start_dir, 0, rindex($start_dir, '/'));
dir ($start_dir);