MCPcopy Create free account
hub / github.com/albinowax/ActiveScanPlusPlus / doActiveScan

Method doActiveScan

src/burp/PerHostScans.java:17–28  ·  view source on GitHub ↗
(IHttpRequestResponse basePair, IScannerInsertionPoint insertionPoint)

Source from the content-addressed store, hash-verified

15 }
16
17 @Override
18 public List<IScanIssue> doActiveScan(IHttpRequestResponse basePair, IScannerInsertionPoint insertionPoint) {
19 String host = basePair.getHttpService().getHost();
20 if (scannedHosts.contains(host)) {
21 return Collections.emptyList();
22 }
23
24 scannedHosts.add(host);
25 List<IScanIssue> issues = new ArrayList<>();
26 issues.addAll(interestingFileScan(basePair));
27 return issues;
28 }
29
30 @Override
31 public int consolidateDuplicateIssues(IScanIssue iScanIssue, IScanIssue iScanIssue1) {

Callers

nothing calls this directly

Calls 2

interestingFileScanMethod · 0.95
getHttpServiceMethod · 0.80

Tested by

no test coverage detected