Skip to content

Commit

Permalink
Reporters: Removed obsolete skip_responses option
Browse files Browse the repository at this point in the history
  • Loading branch information
Zapotek committed Jun 11, 2017
1 parent 6a4135b commit 28c718d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
5 changes: 1 addition & 4 deletions components/reporters/html.rb
Original file line number Diff line number Diff line change
Expand Up @@ -440,10 +440,7 @@ def self.info
content_type: 'application/zip',
author: 'Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>',
version: '0.4.4',
options: [
Options.outfile( '.html.zip' ),
Options.skip_responses
]
options: [ Options.outfile( '.html.zip' ) ]
}
end

Expand Down
4 changes: 2 additions & 2 deletions components/reporters/xml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ def self.info
description: %q{Exports the audit results as an XML (.xml) file.},
content_type: 'text/xml',
author: 'Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>',
version: '0.3.7',
options: [ Options.outfile( '.xml' ), Options.skip_responses ]
version: '0.3.8',
options: [ Options.outfile( '.xml' ) ]
}
end

Expand Down
9 changes: 0 additions & 9 deletions lib/arachni/reporter/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,6 @@ def outfile( extension = '', description = 'Where to save the report.' )
)
end

def skip_responses
Options::Bool.new( :skip_responses,
description: "Don't include the bodies of the HTTP " +
'responses of the issues in the report' +
' -- will lead to a greatly decreased report file-size.',
default: false
)
end

extend self
end
end
Expand Down

0 comments on commit 28c718d

Please sign in to comment.