-
-
Notifications
You must be signed in to change notification settings - Fork 752
Params Initial Relocation #6933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
Add-on loads and works as expected. Help doesn't work for some reason that I haven't been able to nail down. (I've compared vs spider and don't see the missing bit). I still need to address the DB bits. Turns out there were not images/icons in use. |
|
|
||
| public ExtensionParams2() { | ||
| super(NAME); | ||
| this.setOrder(59); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I bumped this to 59 vs core 58.
77cd1e0 to
76933e1
Compare
|
Great job! No new security vulnerabilities introduced in this pull requestUse @Checkmarx to reach out to us for assistance. Just send a PR comment with Examples: |
08eff9c to
08bfcb1
Compare
|
This will have to be synced once zaproxy/zaproxy#9148 is merged. |
08bfcb1 to
966a468
Compare
Signed-off-by: kingthorin <[email protected]>
966a468 to
46f8476
Compare
| @@ -0,0 +1,2 @@ | |||
| version=0.0.1 | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.1.0?
|
|
||
| zapAddOn { | ||
| addOnName.set("Params") | ||
| addOnStatus.set(AddOnStatus.RELEASE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Different status?
| public void unload() { | ||
| super.unload(); | ||
|
|
||
| ExtensionPassiveScan2 extensionPassiveScan = | ||
| Control.getSingleton() | ||
| .getExtensionLoader() | ||
| .getExtension(ExtensionPassiveScan2.class); | ||
| if (extensionPassiveScan != null) { | ||
| extensionPassiveScan.getPassiveScannersManager().remove(paramScanner); | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I seem to be missing something here but I couldn't figure out what it was.
That would mean depending on a core snapshot wouldn't it? |
|
No, can use reflection. |
|
Oh like it'll just use the functionality if available, then later when targeting 2.17 or whatever it can use the code directly? |

Initial relocation of the Params extension/add-on from core.