| 362 | } |
| 363 | |
| 364 | void 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 | } |
| 381 | void PrintValuesTodesk(CanonicalTodesk todesk, HANDLE hProcess, int64_t address) { |
| 382 | PRINT(" 设备代码: "); |
| 383 | ReadStringTodesk(hProcess, todesk.code, address + 0x100); |
no test coverage detected