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

Method launchPassiveScan

src/burp/OldUtilities.java:93–100  ·  view source on GitHub ↗
(IHttpRequestResponse attack)

Source from the content-addressed store, hash-verified

91 }
92
93 public static void launchPassiveScan(IHttpRequestResponse attack) {
94 if (attack.getResponse() == null) {
95 return;
96 }
97 IHttpService service = attack.getHttpService();
98 boolean usingHttps = service.getProtocol().equals("https");
99 Utilities.callbacks.doPassiveScan(service.getHost(), service.getPort(), usingHttps, attack.getRequest(), attack.getResponse());
100 }
101
102 public static boolean hit(byte[] response, String basePrint) {
103 return tagmap(safeBytesToString(response)).equals(basePrint);

Callers 2

doCodePathScanMethod · 0.95
doActiveScanMethod · 0.80

Calls 2

getHttpServiceMethod · 0.80
doPassiveScanMethod · 0.45

Tested by

no test coverage detected