MCPcopy Index your code
hub / github.com/API-Security/APIKit / getCookieHeader

Method getCookieHeader

src/main/java/burp/CookieManager.java:125–132  ·  view source on GitHub ↗
(URL url)

Source from the content-addressed store, hash-verified

123 }
124
125 public String getCookieHeader(URL url) {
126 HashMap<String, String> cookie = this.cookies.get(this.urlToOrigin(url));
127 if (cookie != null) {
128 return "Cookie: " + this.joinCookieKeyValue(cookie);
129 } else {
130 return null;
131 }
132 }
133}

Callers 1

getRequestMethod · 0.80

Calls 3

urlToOriginMethod · 0.95
joinCookieKeyValueMethod · 0.95
getMethod · 0.80

Tested by

no test coverage detected