Changeset 494
- Timestamp:
- 08/05/2010 01:46:24 PM (3 years ago)
- Location:
- trunk/plugins
- Files:
-
- 1 added
- 1 edited
-
nikto_core.plugin (modified) (2 diffs)
-
nikto_report_msf.plugin (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/nikto_core.plugin
r493 r494 721 721 } 722 722 elsif ($key eq 'P') { 723 my $sleep = 1; 724 nprint("- Pausing, press P to resume."); 725 while ($sleep) { 726 sleep 1; 727 if (readkey() eq 'P') { 728 $sleep = 0; 729 nprint("- Resuming."); 730 } 731 } 723 nprint("- Pausing--press P to resume."); 724 while (readkey() ne 'P') { } 725 nprint("- Resuming."); 732 726 } 733 727 return; … … 2216 2210 nprint("$FILE" . " " x $ws1 . "$VERS[0]" . " " x $ws2 . "$modification[4]"); 2217 2211 } 2212 nprint($NIKTO{'DIV'}); 2213 2214 # Check dependencies 2215 eval "require RPC::XML"; 2216 if ($@) { 2217 nprint("Module RPC::XML missing. Logging to Metasploit is disabled."); 2218 } 2219 eval "require RPC::XML::Client"; 2220 if ($@) { 2221 nprint("Module RPC::XML::Client missing. Logging to Metasploit is disabled."); 2222 } 2218 2223 nprint($NIKTO{'DIV'}); 2219 2224
Note: See TracChangeset
for help on using the changeset viewer.