Skip to content

Commit

Permalink
Improve the documentation
Browse files Browse the repository at this point in the history
Solves: vmware#37
Solves: vmware#60
  • Loading branch information
thypon committed Oct 30, 2018
1 parent 6ae818b commit 8d25ee7
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 59 deletions.
31 changes: 31 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FAQ
===

Is Burp suite free/community edition supported?
-----------------------------------------------

No, it is not. Burp rest API exposes only endpoint that works with the pro
version of Burp suite. Even if it is technically possible to start the
burp-rest-api with minor changes to the codebase it is not supported and
the support won't be included in future releases.

Whenever I run the gradle command I receive an error. What can be the the cause?
----------------------------------------------------------------------------

Gradle introduces frequently incompatibility between major version, therefore
the recommended way to execute any Gradle build is with the help of the Gradle
Wrapper (in short just “Wrapper”). The Wrapper is a script that invokes a
declared version of Gradle, downloading it beforehand if necessary.

See [Issue 37](https://github.com/vmware/burp-rest-api/issues/37)

Is it possible to run burp-rest-api graphically in remote servers?
------------------------------------------------------------------

Yes, it is possible to run burp in graphical environments in multiple
configurations (X Forwarding, Full VNC, RDP, XPRA).

For running a non persistent X Forwarding session on your OS you can follow this
[guide](https://uisapp2.iu.edu/confluence-prd/pages/viewpage.action?pageId=280461906).

See [Issue 60](https://github.com/vmware/burp-rest-api/issues/60)
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
Copyright (c) 2018 Doyensec LLC. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
following conditions are met: Redistributions of source code must retain the above copyright notice, this list of
Expand Down
106 changes: 47 additions & 59 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,9 @@

A REST/JSON API to the Burp Suite security tool.

Upon successfully building the project, an executable JAR file is created with the Burp Suite Professional JAR bundled
in it. When the JAR is launched, it provides a REST/JSON endpoint to access the Scanner, Spider, Proxy and other
features of the Burp Suite Professional security tool.

## Try it out

### Prerequisites

* Java 8
* Gradle
* Licensed Burp Suite Professional version 1.7.x or later from: <http://portswigger.net/burp/>


### Build & Run

1. [Download](https://portswigger.net/burp/download.html) the Professional edition of Burp Suite.
2. Create a `lib` folder under the project directory and place the Burp Suite JAR file into it and rename it to "burpsuite_pro.jar".
3. The project can be run either by running the Gradle Spring `bootRun` command or by directly launching the JAR
created from building the project:

```
gradlew bootRun
```

or

```
# build the jar
gradlew clean build
# and run it
java -jar build/libs/burp-rest-api-*.jar --burp.jar=./lib/burpsuite_pro.jar
```
The version number of the JAR should match the version number from `build.gradle` while generating the JAR.
Since version 2.0.0 it is possible to run the burp-rest-api release jar,
downloading it directly from the
[release channel](https://github.com/vmware/burp-rest-api/releases).

## Documentation

Expand All @@ -46,19 +16,6 @@ By default, Burp is launched in headless mode with the Proxy running on port 808

To __run Burp in UI mode__ from the command line, use one of the following commands:

With the `bootRun` command:
```
gradlew bootRun -Djava.awt.headless=false --burp.jar=./lib/burpsuite_pro.jar
```
or
```
gradlew bootRun -Dheadless.mode=false --burp.jar=./lib/burpsuite_pro.jar
```
or with the `bootRun` command using the `-PappArgs` to pass args directly to burp suite :
```
gradlew bootRun -PappArgs="['-Djava.awt.headless=false','--project-file=./test.burp']"
```
With the executable JAR:
```
java -jar burp-rest-api-1.0.2.jar -Djava.awt.headless=false --burp.jar=./lib/burpsuite_pro.jar
```
Expand All @@ -70,16 +27,6 @@ or

To __modify the server port__ on which the API is accessible, use one of the following commands:

With the `bootRun` command:
```
gradlew bootRun -Dserver.port=8081 --burp.jar=./lib/burpsuite_pro.jar
```
or
```
gradlew bootRun -Dport=8081 --burp.jar=./lib/burpsuite_pro.jar
```

With the executable JAR:
```
java -jar burp-rest-api-1.0.2.jar --server.port=8081 --burp.jar=./lib/burpsuite_pro.jar
```
Expand All @@ -92,6 +39,10 @@ or

The following command line arguments are used only by the extension to configure the run mode and port number.

`--burp.jar=<filaname.jar>` : Loads the Burp jar dinamically, and expose it through REST APIs. This flag is required.

`--burp.ext=<filename.{jar,rb,py}` : Loads the given Burp extensions during application startup. This flag can be repeated.

`--server.port=<port_number>` : The REST API endpoint is available at the given port number. `--port=<port_number>`
works as short hand argument.

Expand All @@ -108,7 +59,7 @@ Command line arguments passed to the executable burp-rest-api JAR are forwarded
`--config-file=<filename>` : Opens the project using the options contained in the selected project configuration file. To
load multiple project configurations, this argument can be passed more than once with different values.

`--user-config-file=<filename>` : Opens the project using the options contained in the selected user configuration file. To
`--user-config-file=<filename>` : Opens the project using the options contained in the selected user configuration file. To
load multiple user configurations, this argument can be passed more than once with different values.

For more information on Projects, refer to the Burp Suite documentation
Expand Down Expand Up @@ -147,12 +98,49 @@ This project is originally inspired from [Resty-Burp](https://github.com/continu

The burp-rest-api project team welcomes contributions from the community. If you wish to contribute code and you have
not signed our contributor license agreement (CLA), our bot will update the issue when you open a Pull Request. For
any questions about the CLA process, please refer to our [FAQ](https://cla.vmware.com/faq). For more detailed
information, refer to [CONTRIBUTING.md](CONTRIBUTING.md).
any questions about the CLA process, please refer to our [CLA FAQ](https://cla.vmware.com/faq). For more detailed
information, refer to [CONTRIBUTING.md](CONTRIBUTING.md) and [FAQ.md](FAQ.md).

### Develop

Upon successfully building the project, an executable JAR file is created.
The Burp suite JAR can be loaded dinamically through the `--burp.jar=` argument.
When the JAR is launched, it provides a REST/JSON endpoint to access the Scanner, Spider, Proxy and other
features of the Burp Suite Professional security tool.

#### Prerequisites

* Java 8
* Gradle
* Licensed Burp Suite Professional version 1.7.x or later from: <http://portswigger.net/burp/>


#### Build & Run

1. [Download](https://portswigger.net/burp/download.html) the Professional edition of Burp Suite.
2. The project can be run either by running the Gradle Spring `bootRun` command or by directly launching the JAR
created from building the project:
3. OPTIONAL: Create a `lib` folder under the project directory and place the Burp Suite JAR file into it and rename it to "burpsuite_pro.jar" in order to run the integration tests.

```
./gradlew bootRun --burp.jar=./lib/burpsuite_pro.jar
```

or

```
# build the jar
./gradlew clean build
# and run it
java -jar build/libs/burp-rest-api-*.jar --burp.jar=./lib/burpsuite_pro.jar
```
The version number of the JAR should match the version number from `build.gradle` while generating the JAR.


## License

Copyright (c) 2016 VMware, Inc. All Rights Reserved.
Copyright (c) 2018 Doyensec LLC. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
following conditions are met: Redistributions of source code must retain the above copyright notice, this list of
Expand Down

0 comments on commit 8d25ee7

Please sign in to comment.