MCPcopy
hub / github.com/fortra/impacket / DPAPI_SYSTEM

Class DPAPI_SYSTEM

impacket/dpapi.py:518–530  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

516 print()
517
518class 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
532class CredentialFile(Structure):
533 structure = (

Callers 3

__printSecretMethod · 0.90
test_DPAPI_SYSTEMMethod · 0.90
__printSecretMethod · 0.85

Calls

no outgoing calls

Tested by 1

test_DPAPI_SYSTEMMethod · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…