| 339 | } |
| 340 | |
| 341 | void 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 | |
| 364 | void PrintValuesFireFox(CanonicalCookieFireFox cookie, HANDLE hProcess) { |
| 365 | PRINT(" Name: "); |
no test coverage detected