-
-
Notifications
You must be signed in to change notification settings - Fork 716
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
client: limit spider scope and use own proxies #6043
Conversation
New Issues
|
ebe2e60
to
95ad5ef
Compare
addOns/client/src/main/java/org/zaproxy/addon/client/spider/ClientSpider.java
Outdated
Show resolved
Hide resolved
2e84d56
to
267856f
Compare
Limit to context, subtree, or target preventing any accesses outside the selected spider scope. Use own proxies when spidering instead of the main one, to limit the scope and allow later to track the requests of each action. Signed-off-by: thc202 <[email protected]>
267856f
to
05da347
Compare
MessagesTable.class.getResource("/resource/icon/16/152.png")); | ||
|
||
private static final ImageIcon NOT_ALLOWED_ICON = | ||
DisplayUtils.getScaledIcon( | ||
MessagesTable.class.getResource("/resource/icon/16/149.png")); |
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.
Could we give the icons useful filenames?
I know this is a holdover from code/history but I think it'll be more maintenance friendly in the long run.
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 guess these already exist, so maybe that's a change for another PR.
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.
Those are core icons.
Limit to context, subtree, or target preventing any accesses outside the selected spider scope.
Use own proxies when spidering instead of the main one, to limit the scope and allow later to track the requests of each action.