Module Parser
In: lib/Parser/burpparser.rb

Synopsis

This class parsers burp log files - portswigger.net/proxy/.

Examples

Parsing a burp file into an array of requests

 require 'parser'
 bp = Parser::BurpParser.new('test_data.burp')
 bp.requests.each { |r| pp r }

Original Code

Copyright (c) 2005 O‘Reilly Media, Inc. All rights reserved. Network Security Tools By Justin Clarke, Nitesh Dhanjani

New Code

Copyright (c) 2007 by Security Technology Science Pty Ltd. All rights reserved. Licensed under the same terms as GNU GPL v2

Classes and Modules

Class Parser::BurpParser

[Validate]