Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codewatchorg/bypasswaf
/ functions
Functions
205 in github.com/codewatchorg/bypasswaf
⨍
Functions
205
◇
Types & classes
39
Method
getPort
This method returns the port number for the service. @return The port number for the service.
src/burp/IHttpService.java:30
Method
getProcessorName
This method is used by Burp to obtain the name of the payload processor. This will be displayed as an option within the Intruder UI when the user sele
src/burp/IIntruderPayloadProcessor.java:26
Method
getProtocol
This method returns the protocol for the service. @return The protocol for the service. Expected values are "http" or "https".
src/burp/IHttpService.java:38
Method
getProxyHistory
This method returns details of all items in the Proxy history. @return The contents of the Proxy history.
src/burp/IBurpExtenderCallbacks.java:525
Method
getRemediationBackground
This method returns a background description of the remediation for this type of issue. @return A background description of the remediation for this
src/burp/IScanIssue.java:79
Method
getRemediationDetail
This method returns detailed information about the remediation for this specific instance of the issue. @return Detailed information about the remedi
src/burp/IScanIssue.java:99
Method
getRequest
This method is used to retrieve the HTTP request associated with the current message (which may itself be a response). @return The HTTP request assoc
src/burp/IMessageEditorController.java:40
Method
getRequestMarkers
This method returns the details of the request markers. @return A list of index pairs representing the offsets of markers for the request message. Ea
src/burp/IHttpRequestResponseWithMarkers.java:33
Method
getRequestParameter
This method can be used to retrieve details of a specified parameter within an HTTP request. <b>Note:</b> Use <code>analyzeRequest()</code> to obtain
src/burp/IExtensionHelpers.java:91
Method
getRequestTemplate
This method is used to retrieve the request template for the attack. @return The request template for the attack.
src/burp/IIntruderAttack.java:29
Method
getResponse
This method is used to retrieve the HTTP response associated with the current message (which may itself be a request). @return The HTTP response asso
src/burp/IMessageEditorController.java:48
Method
getResponse
This method is used to retrieve the response message. @return The response message.
src/burp/IHttpRequestResponse.java:41
Method
getResponseMarkers
This method returns the details of the response markers. @return A list of index pairs representing the offsets of markers for the response message.
src/burp/IHttpRequestResponseWithMarkers.java:43
Method
getScanIssues
This method returns all of the current scan issues for URLs matching the specified literal prefix. @param urlPrefix This parameter can be used to spe
src/burp/IBurpExtenderCallbacks.java:551
Method
getSelectedData
This method returns the data that is currently selected by the user. @return The data that is currently selected by the user, or <code>null</code> if
src/burp/IMessageEditor.java:63
Method
getSelectedData
This method is used to retrieve the data that is currently selected by the user. @return The data that is currently selected by the user. This may be
src/burp/IMessageEditorTab.java:101
Method
getSelectedIssues
This method can be used to retrieve details of the Scanner issues that were selected by the user when the context menu was invoked. @return An array
src/burp/IContextMenuInvocation.java:144
Method
getSelectedMessages
This method can be used to retrieve details of the HTTP requests / responses that were shown or selected by the user when the context menu was invoked
src/burp/IContextMenuInvocation.java:132
Method
getSelectedText
This method is used to obtain the currently selected text. @return The currently selected text, or <code>null</code> if the user has not made any sel
src/burp/ITextEditor.java:69
Method
getSelectionBounds
This method can be used to retrieve the bounds of the user's selection into the displayed text, if applicable. @return An int[2] array containing the
src/burp/ITextEditor.java:80
Method
getSelectionBounds
This method can be used to retrieve the bounds of the user's selection into the current message, if applicable. @return An int[2] array containing th
src/burp/IContextMenuInvocation.java:119
Method
getSeverity
This method returns the issue severity level. @return The issue severity level. Expected values are "High", "Medium", "Low", "Information" or "False
src/burp/IScanIssue.java:53
Method
getSiteMap
This method returns details of items in the site map. @param urlPrefix This parameter can be used to specify a URL prefix, in order to extract a spec
src/burp/IBurpExtenderCallbacks.java:538
Method
getStatus
This method returns a description of the status of the scan queue item. @return A description of the status of the scan queue item.
src/burp/IScanQueueItem.java:25
Method
getStatusCode
This method is used to obtain the HTTP status code contained in the response. @return The HTTP status code contained in the response.
src/burp/IResponseInfo.java:43
Method
getStderr
This method is used to obtain the current extension's standard error stream. Extensions should write all error messages to this stream, allowing the B
src/burp/IBurpExtenderCallbacks.java:110
Method
getTabCaption
Burp uses this method to obtain the caption that should appear on the custom tab when it is displayed. @return The caption that should appear on the
src/burp/ITab.java:28
Method
getTabCaption
()
src/burp/BurpExtender.java:549
Method
getTabCaption
This method returns the caption that should appear on the custom tab when it is displayed. <b>Note:</b> Burp invokes this method once when the tab is
src/burp/IMessageEditorTab.java:31
Method
getToolFlag
This method can be used to retrieve the Burp tool within which the context menu was invoked. @return A flag indicating the Burp tool within which the
src/burp/IContextMenuInvocation.java:97
Method
getToolName
This method is used to obtain the descriptive name for the Burp tool identified by the tool flag provided. @param toolFlag A flag identifying a Burp
src/burp/IBurpExtenderCallbacks.java:727
Method
getType
This method is used to retrieve the parameter type. @return The parameter type. The available types are defined within this interface.
src/burp/IParameter.java:53
Method
getUiComponent
Burp uses this method to obtain the component that should be used as the contents of the custom tab when it is displayed. @return The component that
src/burp/ITab.java:37
Method
getUiComponent
()
src/burp/BurpExtender.java:553
Method
getUiComponent
This method returns the component that should be used as the contents of the custom tab when it is displayed. <b>Note:</b> Burp invokes this method on
src/burp/IMessageEditorTab.java:42
Method
getUrl
This method returns the URL for which the issue was generated. @return The URL for which the issue was generated.
src/burp/IScanIssue.java:29
Method
getValue
This method is used to retrieve the parameter value. @return The parameter value.
src/burp/IParameter.java:67
Method
getValue
This method is used to retrieve the value of the cookie. @return The value of the cookie.
src/burp/ICookie.java:52
Method
getValueEnd
This method is used to retrieve the end offset of the parameter value within the HTTP request. @return The end offset of the parameter value within t
src/burp/IParameter.java:103
Method
getValueStart
This method is used to retrieve the start offset of the parameter value within the HTTP request. @return The start offset of the parameter value with
src/burp/IParameter.java:94
Method
hasMorePayloads
This method is used by Burp to determine whether the payload generator is able to provide any further payloads. @return Extensions should return <cod
src/burp/IIntruderPayloadGenerator.java:29
Method
includeInScope
This method can be used to include the specified URL in the Suite-wide scope. @param url The URL to include in the Suite-wide scope.
src/burp/IBurpExtenderCallbacks.java:502
Method
indexOf
This method searches a piece of data for the first occurrence of a specified pattern. It works on byte-based data in a way that is similar to the way
src/burp/IExtensionHelpers.java:207
Method
isEnabled
The hosting editor will invoke this method before it displays a new HTTP message, so that the custom tab can indicate whether it should be enabled for
src/burp/IMessageEditorTab.java:57
Method
isInScope
This method can be used to query whether a specified URL is within the current Suite-wide scope. @param url The URL to query. @return Returns <code>t
src/burp/IBurpExtenderCallbacks.java:494
Method
isMessageModified
This method is used to determine whether the current message has been modified by the user. @return An indication of whether the current message has
src/burp/IMessageEditor.java:55
Method
isModified
This method is used to determine whether the currently displayed message has been modified by the user. The hosting editor will always call <code>getM
src/burp/IMessageEditorTab.java:92
Method
isTextModified
This method is used to determine whether the user has modified the contents of the editor. @return An indication of whether the user has modified the
src/burp/ITextEditor.java:61
Method
issueAlert
This method can be used to display a specified message in the Burp Suite alerts tab. @param message The alert message to display.
src/burp/IBurpExtenderCallbacks.java:518
Method
loadConfig
This method causes Burp to load a new configuration from the Map of name/value Strings provided. Any settings not specified in the Map will be restore
src/burp/IBurpExtenderCallbacks.java:630
Method
loadExtensionSetting
This method is used to load configuration settings for the extension that were saved using the method <code>saveExtensionSetting()</code>. @param nam
src/burp/IBurpExtenderCallbacks.java:316
Method
makeHttpRequest
This method can be used to issue HTTP requests and retrieve their responses. @param httpService The HTTP service to which the request should be sent.
src/burp/IBurpExtenderCallbacks.java:467
Method
makeScannerInsertionPoint
This method constructs an <code>IScannerInsertionPoint</code> object based on the details provided. It can be used to quickly create a simple insertio
src/burp/IExtensionHelpers.java:347
Method
menuItemClicked
This method is invoked by Burp Suite when the user clicks on a custom menu item which the extension has registered with Burp. @param menuItemCaption
src/burp/IMenuItemHandler.java:33
Method
newScanIssue
This method is invoked when a new issue is added to Burp Scanner's results. @param issue An <code>IScanIssue</code> object that the extension can que
src/burp/IScannerListener.java:29
Method
performAction
(self, currentRequest, macroItems)
bypasswaf.py:31
Method
performAction
(IHttpRequestResponse currentRequest, IHttpRequestResponse[] macroItems)
src/burp/BurpExtender.java:566
Method
performAction
This method is invoked when the session handling action should be executed. This may happen as an action in its own right, or as a sub-action followin
src/burp/ISessionHandlingAction.java:48
Method
processHttpMessage
This method is invoked when an HTTP request is about to be issued, and when an HTTP response has been received. @param toolFlag A flag indicating the
src/burp/IHttpListener.java:34
Method
processPayload
This method is invoked by Burp each time the processor should be applied to an Intruder payload. @param currentPayload The value of the payload to be
src/burp/IIntruderPayloadProcessor.java:41
Method
processProxyMessage
This method is invoked when an HTTP message is being processed by the Proxy. @param messageIsRequest Indicates whether the HTTP message is a request
src/burp/IProxyListener.java:34
Method
registerContextMenuFactory
This method is used to register a factory for custom context menu items. When the user invokes a context menu anywhere within Burp, the factory will b
src/burp/IBurpExtenderCallbacks.java:175
Method
registerExtenderCallbacks
(self, callbacks)
bypasswaf.py:24
Method
registerExtenderCallbacks
(IBurpExtenderCallbacks callbacks)
src/burp/BurpExtender.java:236
Method
registerExtenderCallbacks
This method is invoked when the extension is loaded. It registers an instance of the <code>IBurpExtenderCallbacks</code> interface, providing methods
src/burp/IBurpExtender.java:30
Method
registerExtensionStateListener
This method is used to register a listener which will be notified of changes to the extension's state. <b>Note:</b> Any extensions that start backgrou
src/burp/IBurpExtenderCallbacks.java:122
Method
registerHttpListener
This method is used to register a listener which will be notified of requests and responses made by any Burp tool. Extensions can perform custom analy
src/burp/IBurpExtenderCallbacks.java:133
Method
registerIntruderPayloadGeneratorFactory
This method is used to register a factory for Intruder payloads. Each registered factory will be available within the Intruder UI for the user to sele
src/burp/IBurpExtenderCallbacks.java:222
Method
registerIntruderPayloadProcessor
This method is used to register a custom Intruder payload processor. Each registered processor will be available within the Intruder UI for the user t
src/burp/IBurpExtenderCallbacks.java:233
Method
registerMenuItem
This method can be used to register a new menu item which will appear on the various context menus that are used throughout Burp Suite to handle user-
src/burp/IBurpExtenderCallbacks.java:782
Method
registerMessageEditorTabFactory
This method is used to register a factory for custom message editor tabs. For each message editor that already exists, or is subsequently created, wit
src/burp/IBurpExtenderCallbacks.java:187
Method
registerProxyListener
This method is used to register a listener which will be notified of requests and responses being processed by the Proxy tool. Extensions can perform
src/burp/IBurpExtenderCallbacks.java:144
Method
registerScannerCheck
This method is used to register a custom Scanner check. When performing scanning, Burp will ask the check to perform active or passive scanning on the
src/burp/IBurpExtenderCallbacks.java:209
Method
registerScannerInsertionPointProvider
This method is used to register a provider of Scanner insertion points. For each base request that is actively scanned, Burp will ask the provider to
src/burp/IBurpExtenderCallbacks.java:198
Method
registerScannerListener
This method is used to register a listener which will be notified of new issues that are reported by the Scanner tool. Extensions can perform custom a
src/burp/IBurpExtenderCallbacks.java:155
Method
registerScopeChangeListener
This method is used to register a listener which will be notified of changes to Burp's suite-wide target scope. @param listener An object created by
src/burp/IBurpExtenderCallbacks.java:164
Method
removeParameter
This method removes a parameter from an HTTP request, and if appropriate updates the Content-Length header. @param request The request from which the
src/burp/IExtensionHelpers.java:263
Method
removeSuiteTab
This method is used to remove a previously-added tab from the main Burp Suite window. @param tab An object created by the extension that implements t
src/burp/IBurpExtenderCallbacks.java:261
Method
reset
This method is used by Burp to reset the state of the payload generator so that the next call to <code>getNextPayload()</code> returns the first paylo
src/burp/IIntruderPayloadGenerator.java:49
Method
restoreState
This method can be used to restore Burp's state from a specified saved state file. This method blocks until the restore operation is completed, and mu
src/burp/IBurpExtenderCallbacks.java:598
Method
saveBuffersToTempFiles
This method is used to save the request and response of an <code>IHttpRequestResponse</code> object to temporary files, so that they are no longer hel
src/burp/IBurpExtenderCallbacks.java:686
Method
saveConfig
This method causes Burp to save all of its current configuration as a Map of name/value Strings. @return A Map of name/value Strings reflecting Burp'
src/burp/IBurpExtenderCallbacks.java:616
Method
saveExtensionSetting
This method is used to save configuration settings for the extension in a persistent way that survives reloads of the extension and of Burp Suite. Sav
src/burp/IBurpExtenderCallbacks.java:305
Method
saveState
This method can be used to save Burp's state to a specified file. This method blocks until the save operation is completed, and must not be called fro
src/burp/IBurpExtenderCallbacks.java:607
Method
saveToTempFile
This method is used to create a temporary file on disk containing the provided data. Extensions can use temporary files for long-term storage of runti
src/burp/IBurpExtenderCallbacks.java:671
Method
scopeChanged
This method is invoked whenever a change occurs to Burp's suite-wide target scope.
src/burp/IScopeChangeListener.java:24
Method
sendToIntruder
This method can be used to send an HTTP request to the Burp Intruder tool. The request will be displayed in the user interface, and markers for attack
src/burp/IBurpExtenderCallbacks.java:359
Method
sendToRepeater
This method can be used to send an HTTP request to the Burp Repeater tool. The request will be displayed in the user interface, but will not be issued
src/burp/IBurpExtenderCallbacks.java:341
Method
sendToSpider
This method can be used to send a seed URL to the Burp Spider tool. If the URL is not within the current Spider scope, the user will be asked if they
src/burp/IBurpExtenderCallbacks.java:395
Method
setComment
This method is used to update the user-annotated comment for this item. @param comment The comment to be assigned to this item.
src/burp/IHttpRequestResponse.java:63
Method
setEditable
This method is used to control whether the editor is currently editable. This status can be toggled on and off as required. @param editable Indicates
src/burp/ITextEditor.java:37
Method
setHighlight
This method is used to update the user-annotated highlight for this item. @param color The highlight color to be assigned to this item. Accepted valu
src/burp/IHttpRequestResponse.java:81
Method
setHttpService
This method is used to update the HTTP service for this request / response. @param httpService An <code>IHttpService</code> object containing details
src/burp/IHttpRequestResponse.java:100
Method
setInterceptAction
This method is used to update the interception action. @param interceptAction The new interception action. Possible values are defined within this in
src/burp/IInterceptedProxyMessage.java:95
Method
setMessage
This method is used to display an HTTP message in the editor. @param message The HTTP message to be displayed. @param isRequest Flags whether the mes
src/burp/IMessageEditor.java:38
Method
setMessage
The hosting editor will invoke this method to display a new message or to clear the existing message. This method will only be called with a new messa
src/burp/IMessageEditorTab.java:72
Method
setProxyInterceptionEnabled
This method sets the master interception mode for Burp Proxy. @param enabled Indicates whether interception of Proxy messages should be enabled.
src/burp/IBurpExtenderCallbacks.java:638
Method
setResponse
This method is used to update the response message. @param message The new response message.
src/burp/IHttpRequestResponse.java:48
Method
setSearchExpression
This method is used to update the search expression that is shown in the search bar below the editor. The editor will automatically highlight any regi
src/burp/ITextEditor.java:89
Method
stringToBytes
This method can be used to convert data from String form into an array of bytes. The conversion does not reflect any particular character set, and a c
src/burp/IExtensionHelpers.java:173
← previous
next →
101–200 of 205, ranked by callers