|
|
|
@ -16,7 +16,7 @@ sub uniq { |
|
|
|
|
print "\033[36m \nDEFACEMENT CHECK [" . $date . "]\n\nSearching for suspects ...\n"; |
|
|
|
|
print "FOUND \t\t=> URLs\n"; |
|
|
|
|
|
|
|
|
|
# Import config |
|
|
|
|
# Import config Website |
|
|
|
|
my @scan; |
|
|
|
|
my @search; |
|
|
|
|
my $websites = 'conf/websites.cfg'; |
|
|
|
@ -29,6 +29,15 @@ if (open(my $f, '<:encoding(UTF-8)', $websites)) { |
|
|
|
|
warn "Could not open file '$websites' $!"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Slurp Websites |
|
|
|
|
my $site; |
|
|
|
|
system("rm urls/*.urls"); |
|
|
|
|
foreach $site (@scan) |
|
|
|
|
{ |
|
|
|
|
system("/bin/bash slurp_urls.sh $site"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Import config Keywords |
|
|
|
|
my $keywords = 'conf/keywords.cfg'; |
|
|
|
|
if (open(my $f, '<:encoding(UTF-8)', $keywords)) { |
|
|
|
|
while (my $row = <$f>) { |
|
|
|
@ -39,14 +48,6 @@ if (open(my $f, '<:encoding(UTF-8)', $keywords)) { |
|
|
|
|
warn "Could not open file '$keywords' $!"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Slurp websites |
|
|
|
|
my $site; |
|
|
|
|
system("rm urls/*.urls"); |
|
|
|
|
foreach $site (@scan) |
|
|
|
|
{ |
|
|
|
|
system("/bin/bash slurp_urls.sh $site"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Open URLS files |
|
|
|
|
my @files = glob( "urls/*.urls" ); |
|
|
|
|
my $file; |
|
|
|
|