Skip to content

Commit

Permalink
Added new required flag for Burp 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
BuffaloWill committed May 6, 2022
1 parent 8825a9c commit de48af2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ burpsuite-project-file-parser is a Burp Suite extension to parse project files f
# Example Usage

Notes:
- Flags can be combined. For example, print audit items and site map; `--auditItems --siteMap`
- Flags can be combined. For example, print audit items and site map; `auditItems siteMap`
- `[PATH_TO burpsuite_pro.jar]` is required; my path is: `~/BurpSuitePro/burpsuite_pro.jar` if you need an example.
- `[PATH TO PROJECT FILE]` requires a project file and it's recommended to give the full path to the project file
- You may need `--add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED`
depending on your version of Java

## Print Audit items

Expand All @@ -43,7 +45,7 @@ java -jar -Djava.awt.headless=true [PATH_TO burpsuite_pro.jar] --project-file=[P

## Search Response Headers using Regex

Use the `--responseHeader=regex` flag. For example to search for any nginx or Servlet in response header:
Use the `responseHeader=regex` flag. For example to search for any nginx or Servlet in response header:

```
java -jar -Djava.awt.headless=true [PATH_TO burpsuite_pro.jar] --project-file=[PATH TO PROJECT FILE] responseHeader='.*(Servlet|nginx).*'
Expand Down

0 comments on commit de48af2

Please sign in to comment.