Changeset 293
- Timestamp:
- 01/29/10 05:25:15 (3 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
docs/CHANGES.txt (modified) (3 diffs)
-
nikto.conf (modified) (2 diffs)
-
plugins/db_outdated (modified) (1 diff)
-
plugins/nikto_core.plugin (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/CHANGES.txt
r292 r293 1 1 2010-01-20 Nikto 2.1.1 2 - Moved User-Agent string to nikto.conf 3 - Added dynamic variables to User-Agent (Testid, Evasion methods) 4 - Reporting: simplify xml/html code, fix a bug when a space is in the uri, and load ony needed templates 5 - Enable 2 new LW evasion tacticts (carriage return or binary value as request spacer) 6 - Ticket 95: Added support for OSVDB, now the fun bit of filling it in 2 - Ticket 117: Fixed SKIPPORTS 3 - Ticket 116: Moved User-Agent string to nikto.conf 4 - Ticket 116: Added dynamic variables to User-Agent (Testid, Evasion methods) 5 - Ticket 95: Added support for OSVDB, now the fun bit of filling it in 7 6 - Ticket 111: Basic syntax checks for all databases 8 7 - Ticket 109: Added an extra optional <ssl /> element to xml output to contain the SSL date. Need to do similar for html, txt and csv … … 10 9 - Ticket 107: Support for short reads in LW2.5 11 10 - Ticket 98: If -Format is missed guess the format based on file extension in -output. Default is none if -output is omitted. 12 - Added support to select plugins via -Plugins and -list-plugins option to list current plugins13 - Major bug fix for proxy usage14 11 - Ticket 96: Multiple index file enhancements for groups and better unique file identification 15 12 - Ticket 103: <description> content in xml report is now wrapped in CDATA … … 17 14 - Ticket 97: Fix for response caching 18 15 - Ticket 99: Spelling disagreements between Brits and Americans 16 - Removed NMAP and NMAPOPTS from nikto.conf as it is no longer used/supported 17 - Reporting: simplify xml/html code, fix a bug when a space is in the uri, and load ony needed templates 18 - Enable 2 new LW evasion tacticts (carriage return or binary value as request spacer) 19 - Added support to select plugins via -Plugins and -list-plugins option to list current plugins 20 - Major bug fix for proxy usage 19 21 - Don't report p3p header as unusual 20 22 - Various changes to aid future binary db usage for mutates -
trunk/nikto.conf
r292 r293 7 7 NIKTODTD=docs/nikto.dtd 8 8 9 # location of nmap to use with port scanning (rather than Nikto internals)10 # and any options to pass to it11 NMAP=/usr/local/bin/nmap12 NMAPOPTS=-P013 14 9 # ports never to scan 15 #SKIPPORTS=21 11110 SKIPPORTS=21 111 16 11 17 12 # User-Agent variables: 18 # @VERSION - Nikto version19 # @TESTID - Test identifier20 # @EVASIONS - List of active evasions21 USERAGENT= "Mozilla/4.75 (Nikto/@VERSION) (Evasions:@EVASIONS) (Test:@TESTID)";13 # @VERSION - Nikto version 14 # @TESTID - Test identifier 15 # @EVASIONS - List of active evasions 16 USERAGENT=Mozilla/4.75 (Nikto/@VERSION) (Evasions:@EVASIONS) (Test:@TESTID) 22 17 23 18 # IDs never to alert on (Note: this only works for IDs loaded from db_tests) … … 33 28 # send updates because it makes the data better for everyone ;) *NO* server specific information 34 29 # such as IP or name is sent, just the relevant version information. 35 # UPDATES=yes #-- ask before each submission if it should send36 # UPDATES=no #-- don't ask, don't send37 # UPDATES=auto #-- automatically attempt submission *without prompting*30 # UPDATES=yes - ask before each submission if it should send 31 # UPDATES=no - don't ask, don't send 32 # UPDATES=auto - automatically attempt submission *without prompting* 38 33 UPDATES=yes 39 34 -
trunk/plugins/db_outdated
r273 r293 388 388 "600374","Microsoft_PWS_Mac/","4.0b1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)" 389 389 "600375","Microsoft-HTTPAPI/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)" 390 "600376","Microsoft-IIS/"," 6.0","@RUNNING_VER appears to be outdated (4.0 for NT 4, 5.0 for Win2k, current is at least @CURRENT_VER)"390 "600376","Microsoft-IIS/","7.0","@RUNNING_VER appears to be outdated (4.0 for NT 4, 5.0 for Win2k, current is at least @CURRENT_VER)" 391 391 "600377","Microsoft-Internet-Information-Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)" 392 392 "600378","Microsoft-PWS-95/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)" -
trunk/plugins/nikto_core.plugin
r292 r293 1200 1200 my ($hostname, $ip, $port) = @_; 1201 1201 my (%m, %headers); 1202 1203 # Check SKIPPORTS 1204 if ($NIKTOCONFIG{'SKIPPORTS'} =~ /\b$port\b/) { 1205 nprint("+ ERROR: SKIPPORTS (nikto.conf) contains $port -- not checking"); 1206 return 0; 1207 } 1202 1208 1203 1209 $m->{hostname}=$hostname;
Note: See TracChangeset
for help on using the changeset viewer.