📄 nikto_robots.plugin
字号:
#VERSION,2.01#LASTMOD,01.09.2008################################################################################ Copyright (C) 2004 CIRT, Inc.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License# as published by the Free Software Foundation; version 2# of the License only.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.############################################################################################################################################################### PURPOSE# Check out the robots.txt file###############################################################################sub nikto_robots{ (my $RES, $CONTENT) = fetch("/robots.txt", "GET"); if (($RES eq 200) || ($RES eq $FoF{okay}{response})) # got one! { if (is_404("robots.txt", $CONTENT, $RES)) { return; } my ($DIRS, $RFILES) = ""; my $DISCTR = 0; my @DOC = split(/\n/, $CONTENT); foreach my $line (@DOC) { $line = char_escape($line); if ($line =~ /disallow/i) # hmmm... { chomp($line); $line =~ s/\#.*$//; $line =~ s/(^\s+|\s+$)//g; $line =~ s/\s+/ /g; $line =~ s/\\t/ /g; $line =~ s/disallow(:)?( )?//i; $line =~ s/\*//g; $line =~ s/\/+/\//g; if ($line eq "") { next; } # try to figure out file vs dir... just guess... if (($line !~ /\./) && ($line !~ /\/$/)) { $line .= "/"; } $line = LW2::uri_normalize($line); # figure out dirs/files... my $realdir = LW2::uri_get_dir($line); my $realfile = $line; $realfile =~ s/^$realdir//; nprint("- robots.txt entry dir:$realdir -- file:$realfile", "d"); if (($realdir ne "") && ($realdir ne "/")) { $DIRS{$realdir}++; } if (($realfile ne "") && ($realfile ne "/")) { $RFILES{$realfile}++; } $DISCTR++; } # end if $line =~ disallow } # end foreach my $line (@DOC)_ # add them to mutate dir/file foreach my $d (sort keys %DIRS) { if ($VARIABLES{"\@MUTATEDIRS"} !~ /$d/) { $VARIABLES{"\@MUTATEDIRS"} .= " $d"; } } foreach my $f (sort keys %RFILES) { if ($VARIABLES{"\@MUTATEFILES"} !~ /$d/) { $VARIABLES{"\@MUTATEFILES"} .= " $f"; } } my $msg; if ($DISCTR eq 1) { $msg = "contains $DISCTR 'disallow' entry which should be manually viewed."; } elsif ($DISCTR > 1) { $msg = "contains $DISCTR 'disallow' entries which should be manually viewed."; } else { $msg = "retrieved but it does not contain any 'disallow' entries (which is odd)."; } nprint("- /robots.txt - $msg (GET)"); $TARGETS{$CURRENT_HOST_ID}{total_vulns}++; $TARGETS{$CURRENT_HOST_ID}{positives}{999996} = 1; $TESTS{999996}{message} = "robots.txt $msg"; $TESTS{999996}{uri} = "/robots.txt"; $TESTS{999996}{method} = "GET"; $TESTS{999996}{osvdb} = 0; }}1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -