Interface AuditIssueDefinition


  • public interface AuditIssueDefinition
    This interface is used to retrieve background information about audit issues. Note that text generated by extensions is subject to an HTML whitelist that allows only formatting tags and simple hyperlinks.
    • Method Detail

      • auditIssueDefinition

        static AuditIssueDefinition auditIssueDefinition​(java.lang.String name,
                                                         java.lang.String background,
                                                         java.lang.String remediation,
                                                         AuditIssueSeverity typicalSeverity)
        This method can be used to create a default implementation of an audit issue definition.
        Parameters:
        name - The name of the issue type.
        background - The background description for the type of issue.
        remediation - The background description of the remediation for this type of issue.
        typicalSeverity - The typical AuditIssueSeverity level.
        Returns:
        The audit issue definition.
      • name

        java.lang.String name()
        This method returns the name of this issue type.
        Returns:
        The name of this issue type (e.g. "SQL injection").
      • background

        java.lang.String background()
        This method returns a background description for this issue type.
        Returns:
        A background description for this type of issue, or null if none applies. A limited set of HTML tags may be used.
      • remediation

        java.lang.String remediation()
        This method returns a background description of the remediation for this type of issue.
        Returns:
        A background description of the remediation for this type of issue, or null if none applies. A limited set of HTML tags may be used.
      • typeIndex

        int typeIndex()
        This method returns an index of the issue type. See the Burp Scanner documentation for a listing of all the issue types.
        Returns:
        An index of the issue type.