mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-06-06 19:53:53 +02:00
refactor(windows): clean up Chrome ABE module (#574)
* refactor(abe): remove --abe-key flag and its global state * refactor(abe): rework scratch protocol and Go/C structure
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
|
||||
// cgo -godefs layout_gen.go
|
||||
|
||||
package bootstrap
|
||||
|
||||
const (
|
||||
MarkerOffset = 0x28
|
||||
KeyStatusOffset = 0x29
|
||||
KeyStatusReady = 0x1
|
||||
ExtractErrCodeOffset = 0x2a
|
||||
HResultOffset = 0x2c
|
||||
ComErrOffset = 0x30
|
||||
KeyOffset = 0x40
|
||||
KeyLen = 0x20
|
||||
|
||||
ImpLoadLibraryAOffset = 0x40
|
||||
ImpGetProcAddressOffset = 0x48
|
||||
ImpVirtualAllocOffset = 0x50
|
||||
ImpVirtualProtectOffset = 0x58
|
||||
ImpNtFlushICOffset = 0x60
|
||||
|
||||
MarkMZFound = 0x2
|
||||
MarkImportsOK = 0x5
|
||||
MarkAllocOK = 0x6
|
||||
MarkCopied = 0x7
|
||||
MarkRelocated = 0x8
|
||||
MarkImportsFixed = 0x9
|
||||
MarkPermissions = 0xa
|
||||
MarkCacheFlushed = 0xb
|
||||
MarkDone = 0xff
|
||||
MarkErrImports = 0xe3
|
||||
MarkErrAlloc = 0xe4
|
||||
|
||||
ErrOk = 0x0
|
||||
ErrBasename = 0x1
|
||||
ErrBrowserUnknown = 0x2
|
||||
ErrEnvMissing = 0x3
|
||||
ErrBase64 = 0x4
|
||||
ErrBstrAlloc = 0x5
|
||||
ErrComCreate = 0x6
|
||||
ErrDecryptData = 0x7
|
||||
ErrKeyLen = 0x8
|
||||
)
|
||||
@@ -0,0 +1,50 @@
|
||||
//go:build ignore
|
||||
|
||||
// Code generation entry for scratch layout constants shared between the
|
||||
// C payload and the Go injector. Regenerate with `make gen-layout`.
|
||||
|
||||
package bootstrap
|
||||
|
||||
/*
|
||||
#include "../bootstrap_layout.h"
|
||||
*/
|
||||
import "C"
|
||||
|
||||
const (
|
||||
MarkerOffset = C.BOOTSTRAP_MARKER_OFFSET
|
||||
KeyStatusOffset = C.BOOTSTRAP_KEY_STATUS_OFFSET
|
||||
KeyStatusReady = C.BOOTSTRAP_KEY_STATUS_READY
|
||||
ExtractErrCodeOffset = C.BOOTSTRAP_EXTRACT_ERR_CODE_OFFSET
|
||||
HResultOffset = C.BOOTSTRAP_HRESULT_OFFSET
|
||||
ComErrOffset = C.BOOTSTRAP_COMERR_OFFSET
|
||||
KeyOffset = C.BOOTSTRAP_KEY_OFFSET
|
||||
KeyLen = C.BOOTSTRAP_KEY_LEN
|
||||
|
||||
ImpLoadLibraryAOffset = C.BOOTSTRAP_IMPORT_LOADLIBRARYA_OFFSET
|
||||
ImpGetProcAddressOffset = C.BOOTSTRAP_IMPORT_GETPROCADDRESS_OFFSET
|
||||
ImpVirtualAllocOffset = C.BOOTSTRAP_IMPORT_VIRTUALALLOC_OFFSET
|
||||
ImpVirtualProtectOffset = C.BOOTSTRAP_IMPORT_VIRTUALPROTECT_OFFSET
|
||||
ImpNtFlushICOffset = C.BOOTSTRAP_IMPORT_NTFLUSHIC_OFFSET
|
||||
|
||||
MarkMZFound = C.BOOTSTRAP_MARK_MZ_FOUND
|
||||
MarkImportsOK = C.BOOTSTRAP_MARK_IMPORTS_OK
|
||||
MarkAllocOK = C.BOOTSTRAP_MARK_ALLOC_OK
|
||||
MarkCopied = C.BOOTSTRAP_MARK_COPIED
|
||||
MarkRelocated = C.BOOTSTRAP_MARK_RELOCATED
|
||||
MarkImportsFixed = C.BOOTSTRAP_MARK_IMPORTS_FIXED
|
||||
MarkPermissions = C.BOOTSTRAP_MARK_PERMISSIONS
|
||||
MarkCacheFlushed = C.BOOTSTRAP_MARK_CACHE_FLUSHED
|
||||
MarkDone = C.BOOTSTRAP_MARK_DONE
|
||||
MarkErrImports = C.BOOTSTRAP_MARK_ERR_IMPORTS
|
||||
MarkErrAlloc = C.BOOTSTRAP_MARK_ERR_ALLOC
|
||||
|
||||
ErrOk = C.ABE_ERR_OK
|
||||
ErrBasename = C.ABE_ERR_BASENAME
|
||||
ErrBrowserUnknown = C.ABE_ERR_BROWSER_UNKNOWN
|
||||
ErrEnvMissing = C.ABE_ERR_ENV_MISSING
|
||||
ErrBase64 = C.ABE_ERR_BASE64
|
||||
ErrBstrAlloc = C.ABE_ERR_BSTR_ALLOC
|
||||
ErrComCreate = C.ABE_ERR_COM_CREATE
|
||||
ErrDecryptData = C.ABE_ERR_DECRYPT_DATA
|
||||
ErrKeyLen = C.ABE_ERR_KEY_LEN
|
||||
)
|
||||
Reference in New Issue
Block a user