burpparser.rb

Path: lib/Parser/burpparser.rb
Last Update: Sun Oct 14 18:55:29 +1000 2007

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

[Validate]