Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/NetSPI/JSONBeautifier
/ functions
Functions
267 in github.com/NetSPI/JSONBeautifier
⨍
Functions
267
◇
Types & classes
45
↓ 7 callers
Method
setText
This method is used to update the currently displayed text in the editor. @param text The text to be displayed.
burp/ITextEditor.java:44
↓ 3 callers
Method
analyzeRequest
This method can be used to analyze an HTTP request, and obtain various key details about it. @param request An <code>IHttpRequestResponse</code> obje
burp/IExtensionHelpers.java:34
↓ 3 callers
Method
getText
This method is used to retrieve the currently displayed text. @return The currently displayed text.
burp/ITextEditor.java:51
↓ 3 callers
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
burp/ITextEditor.java:37
↓ 2 callers
Method
analyzeResponse
This method can be used to analyze an HTTP response, and obtain various key details about it. @param response The response to be analyzed. @return An
burp/IExtensionHelpers.java:69
↓ 2 callers
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
burp/ITextEditor.java:61
↓ 1 callers
Method
addSuiteTab
This method is used to add a custom tab to the main Burp Suite window. @param tab An object created by the extension that implements the <code>ITab</
burp/IBurpExtenderCallbacks.java:480
↓ 1 callers
Method
buildHttpMessage
This method builds an HTTP message containing the specified headers and message body. If applicable, the Content-Length header will be added or update
burp/IExtensionHelpers.java:212
↓ 1 callers
Method
createTextEditor
This method is used to create a new instance of Burp's plain text editor, for the extension to use in its own UI. @return An object that implements t
burp/IBurpExtenderCallbacks.java:559
↓ 1 callers
Method
customizeUiComponent
This method is used to customize UI components in line with Burp's UI style, including font size, colors, table line spacing, etc. The action is perfo
burp/IBurpExtenderCallbacks.java:499
↓ 1 callers
Method
getBodyOffset
This method is used to obtain the offset within the request where the message body begins. @return The offset within the request where the message bo
burp/IRequestInfo.java:86
↓ 1 callers
Method
getBodyOffset
This method is used to obtain the offset within the response where the message body begins. @return The offset within the response where the message
burp/IResponseInfo.java:35
↓ 1 callers
Method
getComponent
This method returns the UI component of the editor, for extensions to add to their own UI. @return The UI component of the editor.
burp/ITextEditor.java:28
↓ 1 callers
Method
getContentType
This method is used to obtain the content type of the message body. @return An indication of the content type of the message body. Available types ar
burp/IRequestInfo.java:94
↓ 1 callers
Method
getHeaders
This method is used to obtain the HTTP headers contained in the request. @return The HTTP headers contained in the request.
burp/IRequestInfo.java:71
↓ 1 callers
Method
getHelpers
This method is used to obtain an <code>IExtensionHelpers</code> object, which can be used by the extension to perform numerous useful tasks. @return
burp/IBurpExtenderCallbacks.java:91
↓ 1 callers
Method
getInferredMimeType
This method is used to obtain the MIME type of the response, as inferred from the contents of the HTTP message body. @return A textual label for the
burp/IResponseInfo.java:72
↓ 1 callers
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
burp/ITextEditor.java:69
↓ 1 callers
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
burp/IBurpExtenderCallbacks.java:305
↓ 1 callers
Method
setExtensionName
This method is used to set the display name for the current extension, which will be displayed within the user interface for the Extender tool. @para
burp/IBurpExtenderCallbacks.java:82
Method
JSONBeautifierTab
(IMessageEditorController controller, boolean editable)
burp/BurpExtender.java:134
Method
actionPerformed
(ActionEvent ae)
burp/BurpExtender.java:77
Method
actionPerformed
(ActionEvent ae)
burp/BurpExtender.java:94
Method
addParameter
This method adds a new parameter to an HTTP request, and if appropriate updates the Content-Length header. @param request The request to which the pa
burp/IExtensionHelpers.java:235
Method
addScanIssue
This method is used to register a new Scanner issue. <b>Note:</b> Wherever possible, extensions should implement custom Scanner checks using <code>ISc
burp/IBurpExtenderCallbacks.java:1043
Method
addToSiteMap
This method can be used to add an item to Burp's site map with the specified request/response details. This will overwrite the details of any existing
burp/IBurpExtenderCallbacks.java:841
Method
analyzeResponseKeywords
This method analyzes one or more responses to identify the number of occurrences of the specified keywords and returns an <code>IResponseKeywords</cod
burp/IExtensionHelpers.java:355
Method
analyzeResponseVariations
This method analyzes one or more responses to identify variations in a number of attributes and returns an <code>IResponseVariations</code> object tha
burp/IExtensionHelpers.java:342
Method
applyMarkers
This method is used to apply markers to an HTTP request or response, at offsets into the message that are relevant for some particular purpose. Marker
burp/IBurpExtenderCallbacks.java:1015
Method
base64Decode
This method can be used to Base64-decode the specified data. @param data The data to be decoded. @return The decoded data.
burp/IExtensionHelpers.java:124
Method
base64Encode
This method can be used to Base64-encode the specified data. @param data The data to be encoded. @return The encoded data.
burp/IExtensionHelpers.java:140
Method
buildHttpRequest
This method creates a GET request to the specified URL. The headers used in the request are determined by the Request headers settings as configured i
burp/IExtensionHelpers.java:222
Method
buildHttpService
This method constructs an <code>IHttpService</code> object based on the details provided. @param host The HTTP service host. @param port The HTTP ser
burp/IExtensionHelpers.java:289
Method
buildParameter
This method constructs an <code>IParameter</code> object based on the details provided. @param name The parameter name. @param value The parameter va
burp/IExtensionHelpers.java:313
Method
buildRequest
This method is used to build a request with the specified payload placed into the insertion point. There is no requirement for extension-provided inse
burp/IScannerInsertionPoint.java:149
Method
bytesToString
This method can be used to convert data from an array of bytes into String form. The conversion does not reflect any particular character set, and a b
burp/IExtensionHelpers.java:178
Method
cancel
This method allows the scan queue item to be canceled.
burp/IScanQueueItem.java:66
Method
consolidateDuplicateIssues
The Scanner invokes this method when the custom Scanner check has reported multiple issues for the same URL path. This can arise either because there
burp/IScannerCheck.java:80
Method
createBurpCollaboratorClientContext
This method is used to create a new Burp Collaborator client context, which can be used to generate Burp Collaborator payloads and poll the Collaborat
burp/IBurpExtenderCallbacks.java:1055
Method
createMenuItems
This method will be called by Burp when the user invokes a context menu anywhere within Burp. The factory can then provide any custom context menu ite
burp/IContextMenuFactory.java:38
Method
createMessageEditor
This method is used to create a new instance of Burp's HTTP message editor, for the extension to use in its own UI. @param controller An object creat
burp/IBurpExtenderCallbacks.java:519
Method
createNewInstance
Burp will call this method once for each HTTP message editor, and the factory should provide a new instance of an <code>IMessageEditorTab</code> objec
burp/IMessageEditorTabFactory.java:36
Method
createNewInstance
(IMessageEditorController controller, boolean editable)
burp/BurpExtender.java:111
Method
createNewInstance
This method is used by Burp when the user starts an Intruder attack that uses this payload generator. @param attack An <code>IIntruderAttack</code> o
burp/IIntruderPayloadGeneratorFactory.java:39
Method
delete
This method is deprecated and no longer performs any action.
burp/ITempFile.java:31
Method
deleteTempFiles
This method is deprecated and no longer performs any action.
burp/IHttpRequestResponsePersisted.java:23
Method
doActiveScan
The Scanner invokes this method for each insertion point that is actively scanned. Extensions may issue HTTP requests as required to carry out active
burp/IScannerCheck.java:57
Method
doActiveScan
This method can be used to send an HTTP request to the Burp Scanner tool to perform an active vulnerability scan. If the request is not within the cur
burp/IBurpExtenderCallbacks.java:650
Method
doPassiveScan
The Scanner invokes this method for each base request / response that is passively scanned. <b>Note:</b> Extensions should only analyze the HTTP messa
burp/IScannerCheck.java:35
Method
doPassiveScan
This method can be used to send an HTTP request to the Burp Scanner tool to perform a passive vulnerability scan. @param host The hostname of the rem
burp/IBurpExtenderCallbacks.java:690
Method
excludeFromScope
This method can be used to exclude the specified URL from the Suite-wide scope. @param url The URL to exclude from the Suite-wide scope.
burp/IBurpExtenderCallbacks.java:750
Method
exitSuite
This method can be used to shut down Burp programmatically, with an optional prompt to the user. If the method returns, the user canceled the shutdown
burp/IBurpExtenderCallbacks.java:964
Method
extensionUnloaded
This method is called when the extension is unloaded.
burp/IExtensionStateListener.java:26
Method
fetchAllCollaboratorInteractions
This method is used to retrieve all interactions received by the Collaborator server resulting from payloads that were generated for this context. @r
burp/IBurpCollaboratorClientContext.java:43
Method
fetchAllInfiltratorInteractions
This method is used to retrieve all interactions made by Burp Infiltrator instrumentation resulting from payloads that were generated for this context
burp/IBurpCollaboratorClientContext.java:65
Method
fetchCollaboratorInteractionsFor
This method is used to retrieve interactions received by the Collaborator server resulting from a single payload that was generated for this context.
burp/IBurpCollaboratorClientContext.java:54
Method
fetchInfiltratorInteractionsFor
This method is used to retrieve interactions made by Burp Infiltrator instrumentation resulting from a single payload that was generated for this cont
burp/IBurpCollaboratorClientContext.java:76
Method
generatePayload
This method is used to generate new Burp Collaborator payloads. @param includeCollaboratorServerLocation Specifies whether to include the Collaborato
burp/IBurpCollaboratorClientContext.java:33
Method
generateScanReport
This method is used to generate a report for the specified Scanner issues. The report format can be specified. For all other reporting options, the de
burp/IBurpExtenderCallbacks.java:804
Method
getActionName
This method is used by Burp to obtain the name of the session handling action. This will be displayed as an option within the session handling rule ed
burp/ISessionHandlingAction.java:30
Method
getAttributeValue
This method is used to obtain the value of an individual attribute in a response. Note that the values of some attributes are intrinsically meaningful
burp/IResponseVariations.java:54
Method
getBaseValue
This method returns the base value for this insertion point. @return the base value that appears in this insertion point in the base request being sc
burp/IScannerInsertionPoint.java:130
Method
getBuffer
This method is used to retrieve the contents of the buffer that was saved in the temporary file. @return The contents of the buffer that was saved in
burp/ITempFile.java:26
Method
getBurpVersion
This method retrieves information about the version of Burp in which the extension is running. It can be used by extensions to dynamically adjust thei
burp/IBurpExtenderCallbacks.java:937
Method
getClientIpAddress
This method retrieves the client IP address from which the request for the intercepted message was received. @return The client IP address from which
burp/IInterceptedProxyMessage.java:115
Method
getCollaboratorServerLocation
This method is used to retrieve the network location of the Collaborator server. @return The hostname or IP address of the Collaborator server.
burp/IBurpCollaboratorClientContext.java:84
Method
getCommandLineArguments
This method returns the command line arguments that were passed to Burp on startup. @return The command line arguments that were passed to Burp on st
burp/IBurpExtenderCallbacks.java:528
Method
getComment
This method is used to retrieve the user-annotated comment for this item, if applicable. @return The user-annotated comment for this item, or null if
burp/IHttpRequestResponse.java:56
Method
getComponent
This method returns the UI component of the editor, for extensions to add to their own UI. @return The UI component of the editor.
burp/IMessageEditor.java:29
Method
getConfidence
This method returns the issue confidence level. @return The issue confidence level. Expected values are "Certain", "Firm" or "Tentative".
burp/IScanIssue.java:63
Method
getContextMenuFactories
This method is used to retrieve the context menu factories that are registered by the extension. @return A list of context menu factories that are cu
burp/IBurpExtenderCallbacks.java:285
Method
getCookieJarContents
This method is used to retrieve the contents of Burp's session handling cookie jar. Extensions that provide an <code>ISessionHandlingAction</code> can
burp/IBurpExtenderCallbacks.java:816
Method
getCookies
This method is used to obtain details of the HTTP cookies set in the response. @return A list of <code>ICookie</code> objects representing the cookie
burp/IResponseInfo.java:52
Method
getDomain
This method is used to retrieve the domain for which the cookie is in scope. @return The domain for which the cookie is in scope. <b>Note:</b> For co
burp/ICookie.java:30
Method
getExpiration
This method is used to retrieve the expiration time for the cookie. @return The expiration time for the cookie, or <code>null</code> if none is set (
burp/ICookie.java:47
Method
getExtensionFilename
This method retrieves the absolute path name of the file from which the current extension was loaded. @return The absolute path name of the file from
burp/IBurpExtenderCallbacks.java:946
Method
getExtensionStateListeners
This method is used to retrieve the extension state listeners that are registered by the extension. @return A list of extension state listeners that
burp/IBurpExtenderCallbacks.java:147
Method
getGeneratorName
This method is used by Burp to obtain the name of the payload generator. This will be displayed as an option within the Intruder UI when the user sele
burp/IIntruderPayloadGeneratorFactory.java:26
Method
getHeaders
This method parses the specified request and returns details of each HTTP header. @param message The request to be parsed. @return An array of HTTP h
burp/IBurpExtenderCallbacks.java:1078
Method
getHeaders
This method is used to obtain the HTTP headers contained in the response. @return The HTTP headers contained in the response.
burp/IResponseInfo.java:27
Method
getHighlight
This method is used to retrieve the user-annotated highlight for this item, if applicable. @return The user-annotated highlight for this item, or nul
burp/IHttpRequestResponse.java:72
Method
getHost
This method returns the hostname or IP address for the service. @return The hostname or IP address for the service.
burp/IHttpService.java:23
Method
getHttpListeners
This method is used to retrieve the HTTP listeners that are registered by the extension. @return A list of HTTP listeners that are currently register
burp/IBurpExtenderCallbacks.java:175
Method
getHttpMessages
This method returns the HTTP messages on the basis of which the issue was generated. @return The HTTP messages on the basis of which the issue was ge
burp/IScanIssue.java:114
Method
getHttpService
This method is used to retrieve the HTTP service for the attack. @return The HTTP service for the attack.
burp/IIntruderAttack.java:22
Method
getHttpService
This method returns the HTTP service for which the issue was generated. @return The HTTP service for which the issue was generated.
burp/IScanIssue.java:121
Method
getHttpService
This method is used to retrieve the HTTP service for the current message. @return The HTTP service for the current message.
burp/IMessageEditorController.java:32
Method
getHttpService
This method is used to retrieve the HTTP service for this request / response. @return An <code>IHttpService</code> object containing details of the H
burp/IHttpRequestResponse.java:90
Method
getInputEvent
This method can be used to retrieve the native Java input event that was the trigger for the context menu invocation. @return The <code>InputEvent</c
burp/IContextMenuInvocation.java:86
Method
getInsertionPointName
This method returns the name of the insertion point. @return The name of the insertion point (for example, a description of a particular request para
burp/IScannerInsertionPoint.java:121
Method
getInsertionPointType
This method returns the type of the insertion point. @return The type of the insertion point. Available types are defined in this interface.
burp/IScannerInsertionPoint.java:173
Method
getInsertionPoints
When a request is actively scanned, the Scanner will invoke this method, and the provider should provide a list of custom insertion points that will b
burp/IScannerInsertionPointProvider.java:36
Method
getInterceptAction
This method retrieves the currently defined interception action. The default action is <code>ACTION_FOLLOW_RULES</code>. If multiple proxy listeners a
burp/IInterceptedProxyMessage.java:88
Method
getIntruderPayloadGeneratorFactories
This method is used to retrieve the Intruder payload generator factories that are registered by the extension. @return A list of Intruder payload gen
burp/IBurpExtenderCallbacks.java:402
Method
getIntruderPayloadProcessors
This method is used to retrieve the Intruder payload processors that are registered by the extension. @return A list of Intruder payload processors t
burp/IBurpExtenderCallbacks.java:431
Method
getInvariantAttributes
This method is used to obtain the list of attributes that do not vary between the analyzed responses. @return The attributes that do not vary between
burp/IResponseVariations.java:35
Method
getInvariantKeywords
This method is used to obtain the list of keywords whose counts do not vary between the analyzed responses. @return The keywords whose counts do not
burp/IResponseKeywords.java:36
Method
getInvocationContext
This method can be used to retrieve the context within which the menu was invoked. @return An index indicating the context within which the menu was
burp/IContextMenuInvocation.java:105
Method
getIssueBackground
This method returns a background description for this type of issue. @return A background description for this type of issue, or <code>null</code> if
burp/IScanIssue.java:72
Method
getIssueDetail
This method returns detailed information about this specific instance of the issue. @return Detailed information about this specific instance of the
burp/IScanIssue.java:92
next →
1–100 of 267, ranked by callers