-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Added - Unknown signed string tab. - Enabled signers setting added to the main tab - _Known keys_ brute force technic added to the Attack mode ### Changed - Upgrade dependencies: org.json:json
- Loading branch information
Doge
committed
Jan 5, 2024
1 parent
6f9cc05
commit da7c045
Showing
51 changed files
with
806 additions
and
140 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
## [0.0.2] - 2024-01-05 | ||
|
||
### Added | ||
- Unknown signed string tab. | ||
- Enabled signers setting added to the main tab | ||
- _Known keys_ brute force technic added to the Attack mode | ||
|
||
### Changed | ||
- Upgrade dependencies: org.json:json |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
package burp.config; | ||
|
||
import burp.proxy.ProxyConfig; | ||
import com.google.gson.annotations.Expose; | ||
|
||
public class BurpConfig { | ||
private final @Expose ProxyConfig proxyConfig = new ProxyConfig(); | ||
private final @Expose SignerConfig signerConfig = new SignerConfig(); | ||
|
||
public ProxyConfig proxyConfig() { | ||
return proxyConfig; | ||
} | ||
|
||
public SignerConfig signerConfig() { | ||
return signerConfig; | ||
} | ||
} |
3 changes: 2 additions & 1 deletion
3
src/main/java/burp/proxy/ProxyConfig.java → src/main/java/burp/config/ProxyConfig.java
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,64 @@ | ||
package burp.config; | ||
|
||
import com.google.gson.annotations.Expose; | ||
|
||
public class SignerConfig { | ||
@Expose | ||
private boolean enableDangerous; | ||
@Expose | ||
private boolean enableExpress; | ||
@Expose | ||
private boolean enableOAuth; | ||
@Expose | ||
private boolean enableTornado; | ||
@Expose | ||
private boolean enableUnknown; | ||
|
||
public SignerConfig() { | ||
this.enableDangerous = true; | ||
this.enableExpress = true; | ||
this.enableOAuth = false; | ||
this.enableTornado = true; | ||
this.enableUnknown = false; | ||
} | ||
|
||
public boolean isEnableDangerous() { | ||
return enableDangerous; | ||
} | ||
|
||
public void setEnableDangerous(boolean enableDangerous) { | ||
this.enableDangerous = enableDangerous; | ||
} | ||
|
||
public boolean isEnableExpress() { | ||
return enableExpress; | ||
} | ||
|
||
public void setEnableExpress(boolean enableExpress) { | ||
this.enableExpress = enableExpress; | ||
} | ||
|
||
public boolean isEnableOAuth() { | ||
return enableOAuth; | ||
} | ||
|
||
public void setEnableOAuth(boolean enableOAuth) { | ||
this.enableOAuth = enableOAuth; | ||
} | ||
|
||
public boolean isEnableTornado() { | ||
return enableTornado; | ||
} | ||
|
||
public void setEnableTornado(boolean enableTornado) { | ||
this.enableTornado = enableTornado; | ||
} | ||
|
||
public boolean isEnableUnknown() { | ||
return enableUnknown; | ||
} | ||
|
||
public void setEnableUnknown(boolean enableUnknown) { | ||
this.enableUnknown = enableUnknown; | ||
} | ||
} |
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
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
Oops, something went wrong.