/burp-log-reviver

A solution for converting burp logs into sessions

Primary LanguagePerlOtherNOASSERTION

Burp Log Reviver

A solution for converting burp logs into sessions, in all burp suite versions

Burp Log Reviver is an easy-to-use tool, which helps you “revive” a burp log file and transform it to a burp session, even while using the free edition of burp suite.
After reviving the log, you can continue working with your requests and responses, and feel like you never closed burp at all.

Developed by Hacktics ASC

Requirements:

  • Burp Log Reviver is written in Perl and was tested on Perl v5.12.3.

How Does it Work?

Burp Log Reviver is responsible for parsing burp’s logs and placing each of the requests and responses into a Hash table.
After parsing and indexing each message, the tool can function in two methods: client and server.

The Burp Log Reviver client is responsible for sending all requests to burp’s listener port,
while burp is configured to transfer all requests to an upstream proxy, which is configured as the Burp Log Reviver server.

The Burp Log Reviver server is responsible for responding with its corresponding response and creating a complete loopback solution.
The results of this process allow you to reload your burp sessions and continue working from the place you’ve previously stopped.

Developers

Burp Log Reviver is developed and maintained by Niv Sela (@nivselatwit).

User Guide

Instructions (Requests and Responses):
  1. Record a burp log that includes requests and responses.
  2. Remove burp history.
  3. Define burp to listen on port 9999 and set it to "support invisible proxying" mode.
  4. Define an upstream proxy to localhost:9998.
  5. Start the server with the following command:
    ./burpLoader.pl c:\BurpLog.txt -L 9998
  6. Start the client with the following command:
    ./burpLoader.pl c:\BurpLog.txt -C 9999
Instructions (Requests and Real Server’s Reponses)
  1. Remove burp history.
  2. Define burp to Listen on port 9999 and set it to "support invisible proxying" mode.
  3. Execute the following command:
    ./burpLoader.pl c:\BurpLog.txt -C 9999

Copyright

Burp Log Reviver - A solution for converting burp logs into sessions.

Copyright (C) 2013, Hacktics ASC, Ernst & Young.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses.