=begin Copyright 2010-2014 Tasos Laskos This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end # Logs all non 200 (OK) and non 404 server responses. # # @author Tasos "Zapotek" Laskos class Arachni::Checks::InterestingResponses < Arachni::Check::Base IGNORE_CODES = [ 200, 404 ].to_set def self.ran? @ran ||= false end def self.ran @ran = true end def run return if self.class.ran? # tell the HTTP interface to call this block every-time a request completes http.on_complete { |response| check_and_log( response ) } end def clean_up self.class.ran end def check_and_log( response ) return if IGNORE_CODES.include?( response.code ) || response.body.to_s.empty? || issue_limit_reached? path = uri_parse( response.url ).path return if audited?( path ) || audited?( response.body ) audited( path ) audited( response.body ) log( proof: response.status_line, vector: Element::Server.new( response.url ), response: response ) print_ok "Found an interesting response -- Code: #{response.code}." end def self.info { name: 'Interesting responses', description: %q{Logs all non 200 (OK) server responses.}, elements: [ Element::Server ], author: 'Tasos "Zapotek" Laskos ', version: '0.2', issue: { name: %q{Interesting response}, description: %q{ The server responded with a non 200 (OK) nor 404 (Not Found) status code. This is a non-issue, however exotic HTTP response status codes can provide useful insights into the behavior of the web application and assist with the penetration test. }, references: { 'w3.org' => 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html' }, tags: %w(interesting response server), severity: Severity::INFORMATIONAL }, max_issues: 25 } end def self.acceptable [ 102, 200, 201, 202, 203, 206, 207, 208, 226, 300, 301, 302, 303, 305, 306, 307, 308, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 420, 422, 423, 424, 425, 426, 428, 429, 431, 444, 449, 450, 451, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 598, 599 ] end end