MCPcopy Create free account
hub / github.com/SickleSec/GhostWolf / PrintValuesEdge

Function PrintValuesEdge

Ghostwolf/Application.cpp:341–362  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339}
340
341void PrintValuesEdge(CanonicalCookieEdge cookie, HANDLE hProcess) {
342 PRINT(" Name: ");
343 ReadStringChrome(hProcess, cookie.name);
344 PRINT(" Value: ");
345 ReadVector(hProcess, cookie.value.maybe_encrypted_data_, cookie.value.original_size_);
346 PRINT(" Domain: ");
347 ReadStringChrome(hProcess, cookie.domain);
348 PRINT(" Path: ");
349 ReadStringChrome(hProcess, cookie.path);
350 PRINT(" Creation time: ");
351 PrintTimeStamp(cookie.creation_date);
352 PRINT(" Expiration time: ");
353 PrintTimeStamp(cookie.expiry_date);
354 PRINT(" Last accessed: ");
355 PrintTimeStamp(cookie.last_access_date);
356 PRINT(" Last updated: ");
357 PrintTimeStamp(cookie.last_update_date);
358 PRINT(" Secure: %s\n", cookie.secure ? "True" : "False");
359 PRINT(" HttpOnly: %s\n", cookie.httponly ? "True" : "False");
360
361 PRINT("\n");
362}
363
364void PrintValuesFireFox(CanonicalCookieFireFox cookie, HANDLE hProcess) {
365 PRINT(" Name: ");

Callers 1

ProcessNodeValueFunction · 0.85

Calls 3

ReadStringChromeFunction · 0.85
ReadVectorFunction · 0.85
PrintTimeStampFunction · 0.85

Tested by

no test coverage detected