-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added variable tag for get values from macros. Added support for arra…
…y variables. Added When Repeat, Then Repeat. Added new Then Evaluate operations. Removed the Validate buttons to alleviate confusion. Added header CRLF sanity check. Fixed issue with setting a request header using Then Build HTTP Request. Fixed creating a response using Build HTTP Message. Switched Global Variable UI to use Burp's message editor. Modularized Reshaper run configurations.
- Loading branch information
Showing
346 changed files
with
5,800 additions
and
1,126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
plugins { | ||
id 'java' | ||
} | ||
|
||
group 'com.synfron.reshaper.burp' | ||
version '1.0.0' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation files(System.getenv("BURP_JAR_PATH")) | ||
implementation project(":extension") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package synfron.reshaper.burp.debug; | ||
|
||
import burp.StartBurp; | ||
|
||
public class Burp { | ||
|
||
public static void main(String[] args) { | ||
StartBurp.main(args); | ||
} | ||
|
||
} |
Oops, something went wrong.