Interface Scope
public interface Scope
Provides access to the functionality related to Burp's
Suite-wide target scope.
-
Method Summary
Modifier and TypeMethodDescriptionvoidexcludeFromScope(String url) This method can be used to exclude the specified URL from the Suite-wide target scope.voidincludeInScope(String url) This method can be used to include the specified URL in the Suite-wide target scope.booleanThis method can be used to query whether a specified URL is within the current Suite-wide target scope.Register a handler which will be notified of changes to Burp's Suite-wide target scope.
-
Method Details
-
isInScope
This method can be used to query whether a specified URL is within the current Suite-wide target scope.- Parameters:
url- The URL to query.- Returns:
- Returns
trueif the URL is within the current Suite-wide target scope.
-
includeInScope
This method can be used to include the specified URL in the Suite-wide target scope.- Parameters:
url- The URL to include in the Suite-wide target scope.
-
excludeFromScope
This method can be used to exclude the specified URL from the Suite-wide target scope.- Parameters:
url- The URL to exclude from the Suite-wide target scope.
-
registerScopeChangeHandler
Register a handler which will be notified of changes to Burp's Suite-wide target scope.- Parameters:
handler- An object created by the extension that implements theScopeChangeHandlerinterface.- Returns:
- The
Registrationfor the handler.
-