Package burp.api.montoya.scanner.audit
Interface Audit
-
- All Known Subinterfaces:
CrawlAndAudit
public interface Audit extends ScanTask
This interface represents an instance of an audit in the Burp Scanner tool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intinsertionPointCount()This method retrieves the number of insertion points.java.util.List<AuditIssue>issues()This method retrieves the audit issues found by this audit.-
Methods inherited from interface burp.api.montoya.scanner.ScanTask
errorCount, requestCount
-
Methods inherited from interface burp.api.montoya.core.Task
delete, statusMessage
-
-
-
-
Method Detail
-
insertionPointCount
int insertionPointCount()
This method retrieves the number of insertion points.- Returns:
- The number of insertion points.
-
issues
java.util.List<AuditIssue> issues()
This method retrieves the audit issues found by this audit.- Returns:
- The list of
AuditIssues found by this audit.
-
-