| 516 | print() |
| 517 | |
| 518 | class DPAPI_SYSTEM(Structure): |
| 519 | structure = ( |
| 520 | ('Version', '<L=0'), |
| 521 | ('MachineKey', '20s=b""'), |
| 522 | ('UserKey', '20s=b""'), |
| 523 | ) |
| 524 | |
| 525 | def dump(self): |
| 526 | print("[DPAPI_SYSTEM]") |
| 527 | print("Version : %8x (%d)" % (self['Version'], self['Version'])) |
| 528 | print("MachineKey : 0x%s" % hexlify(self['MachineKey']).decode('latin-1')) |
| 529 | print("UserKey : 0x%s" % hexlify(self['UserKey']).decode('latin-1')) |
| 530 | print() |
| 531 | |
| 532 | class CredentialFile(Structure): |
| 533 | structure = ( |
no outgoing calls
searching dependent graphs…