(IHttpRequestResponse basePair, IScannerInsertionPoint insertionPoint)
| 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) { |
nothing calls this directly
no test coverage detected