Getting Started with Burp Suite
Burp Suite Documentation
Take a look at our Documentation section for full details about every Burp Suite tool, function and configuration option.
Burp Suite Professional and Community editions | Burp Suite Enterprise Edition |
Burp Scanner | Burp Collaborator |
Burp Infiltrator | Full Documentation Contents |
Burp Extender
Burp Extender lets you extend the functionality of Burp Suite in numerous ways.
Extensions can be written in Java, Python or Ruby.
API documentation | Writing your first Burp Suite extension |
Sample extensions | View community discussions about Extensibility |
Burp Extensions
Make a new post
-
Customizing my TAB
Hey, I was writing my first extension with the aim to encrypt the selected responses to md5/sha1/etc based on user selection. Based on the custom logger extension example in the blog, I made my new tab with display and all but I am not able to control the GUI Feature of the tab. JTabbedPane tabs = new JTabbedPane(); requestViewer = callbacks.createMessageEditor(BurpExten...
1 Agent Answer 1 Community AnswerDec 29, 2015 09:58AM UTC -
start burp remotely with Remote procedure call (windows)
Hi, We need to start burp on a windows server remotely using Remote procedure call. We also need the burp started with an extension loaded. Since we are not able to specify an extension on command line, we start burp locally, load the extension, and then exit. Hope burp will be started with extension loaded when we use Remote procedure call. when we pragmatically start burp from another s...
2 Agent Answers 2 Community AnswersDec 24, 2015 02:58AM UTC -
Burp UI Development Using NetBeans
Hey All, I am new to Burp Extender development (and Java programming in general). I have had some moderate success getting a handle on how to build Burp extensions, and using NetBeans to build GUIs. I am able to easily make a GUI to do what I want inside NetBeans, building my Java code from scratch. I am also able to work efficiently with Burp's APIs, as long as I don't mind using the...
2 Agent Answers 1 Community AnswerDec 22, 2015 02:28AM UTC -
start burp from perl script
Hi, I try to start burp from a simple PERL script. Then do some tests after burp starts. my $cmd = "java -Xmx1g -Djava.awt.headless=true -jar \"c:\\BURP\\burpsuite_free_v1.6.30.jar \" 1> null 2>&1"; print "start burp with commnd: $cmd\n"; my $ret = `$cmd`; print "burp started: $ret\n"; #test(); exit 0; I can see burp started, but I...
1 Agent Answer 0 Community AnswerDec 19, 2015 08:03PM UTC -
How can i modify http requests with processHttpMessage
Hello, Im using the following code to replace "ReplaceMe" string to "x" string in intruder request however response still didn't replace "ReplaceMe" string. public void processHttpMessage(String toolName, boolean messageIsRequest, IHttpRequestResponse messageInfo) { try { String lowerCaseToolName = toolName.toLowerCase(); if ("intruder".e...
2 Agent Answers 4 Community AnswersDec 16, 2015 07:36AM UTC -
how to start burp with specific extension loaded?
Hi, I am doing burp automation test. I would like to know if there is a way to start burp with a specific extension loaded. I noticed that burp will start with the last configuration used. Is there a configuration file that we can specify which extension to load when burp starts? Thanks
11 Agent Answers 12 Community AnswersDec 11, 2015 08:52PM UTC -
Manual Install of Burp Extension
Hi, I hope I didn't miss it anywhere on the website, but I couldn't find how to install a local Jython extension in Burp through the Manual Install-button in the BApp Store tab. The extension runs fine in Extender->Extensions, and then add it there. The reason I'd like to install it, is because the paths that I need for specifying are different ones for different extensions. A...
4 Agent Answers 3 Community AnswersDec 11, 2015 11:25AM UTC -
NotImplementedError with latest Jython release
The following change for the latest Jython release might break some UI-centric extensions: "Abstract methods of an inherited class or interface from Java now raise NotImplementedError, instead of returning None (in Java, null) or some "zero", if they are not implemented in the extending Python class." source: http://www.jython.org/latest.html As described, if your Burp e...
0 Community AnswerDec 10, 2015 07:37PM UTC -
IRequestInfo getHeaders
Why does the getHeaders method return a list<String> instead of a HashMap<String,String>. I think that everyone using getHeaders is now doing extra parsing on the list of strings since the normal usage would be something like this: headers = info.getHeaders(); String content-length = headers.get("content-length"): The List<String> is really unpractical and I am c...
3 Agent Answers 4 Community AnswersDec 03, 2015 03:08PM UTC -
IExtensionHelpers.makeHttpRequest() with cookies
It appears that IExtensionHelpers.makeHttpRequest(URL) does not include session cookies in the resulting request. How can I construct a GET request that includes the session cookies? Is there a helper method to get all the appropriate cookies for a particular domain/path?
2 Agent Answers 2 Community AnswersNov 20, 2015 09:44AM UTC