Changeset 448
- Timestamp:
- 06/17/2010 04:03:34 AM (3 years ago)
- Location:
- trunk/plugins
- Files:
-
- 3 edited
-
nikto_msgs.plugin (modified) (2 diffs)
-
nikto_robots.plugin (modified) (1 diff)
-
nikto_tests.plugin (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/nikto_msgs.plugin
r344 r448 54 54 # Special stuff to pull information from results 55 55 # McAfee ePO 56 if ($mark->{'banner'} =~ / (Agent-ListenServer-HttpSvr\/1\.0)\b/i) {56 if ($mark->{'banner'} =~ /Agent-ListenServer-HttpSvr\/1\.0\b/i) { 57 57 my ($RES, $CONTENT) = 58 58 nfetch($mark, "/", "GET", "", "", "", "msgs: Agent-ListenServer-HttpSvr"); … … 73 73 74 74 # HP WBEM 75 if ($mark->{'banner'} =~ / (CompaqHTTPServer)/i) {75 if ($mark->{'banner'} =~ /CompaqHTTPServer/i) { 76 76 my ($RES, $CONTENT) = 77 77 nfetch($mark, "/cpqlogin.htm", "GET", "", "", "", "msgs: CompaqHTTPServer"); -
trunk/plugins/nikto_robots.plugin
r439 r448 53 53 chomp($line); 54 54 $line =~ s/\#.*$//; 55 $line =~ s/( ^\s+|\s+$)//g;55 $line =~ s/(?:^\s+|\s+$)//g; 56 56 $line =~ s/\s+/ /g; 57 57 $line =~ s/\\t/ /g; 58 $line =~ s/( dis)?allow(\\:)?( )?//i;58 $line =~ s/(?:dis)?allow(?:\\:)?\s?//i; 59 59 $line =~ s/\*//g; 60 60 $line =~ s/\/+/\//g; -
trunk/plugins/nikto_tests.plugin
r439 r448 62 62 if $CLI{'display'} =~ /3/; 63 63 } 64 elsif ($res =~ /30( [0-3]|7)/) {64 elsif ($res =~ /30(?:[0-3]|7)/) { 65 65 nprint( "+ $uri - Redirects ($res) to " 66 66 . $headers{'location'}
Note: See TracChangeset
for help on using the changeset viewer.