MCPcopy Index your code
hub / github.com/XF-FS/APIKit / getCookieHeader

Method getCookieHeader

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

Source from the content-addressed store, hash-verified

102 }
103
104 public String getCookieHeader(URL url) {
105 String origin = this.urlToOrigin(url);
106 HashMap<String, String> cookie = this.cookies.get(origin);
107 if (cookie != null) {
108 return "Cookie: " + this.joinCookieKeyValue(cookie);
109 }
110 return null;
111 }
112}
113

Callers

nothing calls this directly

Calls 3

urlToOriginMethod · 0.95
joinCookieKeyValueMethod · 0.95
getMethod · 0.80

Tested by

no test coverage detected