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

Method joinCookieKeyValue

src/main/java/burp/CookieManager.java:81–93  ·  view source on GitHub ↗
(HashMap<String, String> cookie)

Source from the content-addressed store, hash-verified

79 }
80
81 private String joinCookieKeyValue(HashMap<String, String> cookie) {
82 StringBuilder builder = new StringBuilder(new String());
83
84 for (Map.Entry<String, String> entry : cookie.entrySet()) {
85 String key = entry.getKey();
86 Object value = entry.getValue();
87 builder.append(key);
88 builder.append("=");
89 builder.append(value);
90 builder.append("; ");
91 }
92 return builder.toString();
93 }
94
95 @Override
96 public void processHttpMessage(int toolFlag, boolean messageIsRequest, IHttpRequestResponse messageInfo) {

Callers 1

getCookieHeaderMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected