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

Function PrintValuesFireFox

Ghostwolf/Application.cpp:364–380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362}
363
364void PrintValuesFireFox(CanonicalCookieFireFox cookie, HANDLE hProcess) {
365 PRINT(" Name: ");
366 ReadStringFireFox(hProcess, cookie.name);
367 PRINT(" Value: ");
368 ReadStringFireFox(hProcess, cookie.value);
369 PRINT(" Domain: ");
370 ReadStringFireFox(hProcess, cookie.domain);
371 PRINT(" Path: ");
372 ReadStringFireFox(hProcess, cookie.path);
373 PRINT(" Expiration time: ");
374 PrintUnixTimestamp(cookie.expiry_date);
375 PRINT(" Creation time: ");
376 PrintUnixTimestamp(cookie.creation_date);
377 PRINT(" Last accessed: ");
378 PrintUnixTimestamp(cookie.last_access_date);
379 PRINT("\n");
380}
381void PrintValuesTodesk(CanonicalTodesk todesk, HANDLE hProcess, int64_t address) {
382 PRINT(" 设备代码: ");
383 ReadStringTodesk(hProcess, todesk.code, address + 0x100);

Callers 1

ProcessNodeValueFunction · 0.85

Calls 2

ReadStringFireFoxFunction · 0.85
PrintUnixTimestampFunction · 0.85

Tested by

no test coverage detected