mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
c3d30b9e8a
* build(abe): add zig-cc payload build system + C reflective loader * feat(abe): add reflective injector and Go ABE key-retriever primitives * feat(abe): wire ABERetriever into DefaultRetriever chain + --abe-key CLI * feat(abe): route Chromium v20 ciphertext through AES-GCM with ABE key
6 lines
125 B
Go
6 lines
125 B
Go
package injector
|
|
|
|
type Strategy interface {
|
|
Inject(exePath string, payload []byte, env map[string]string) ([]byte, error)
|
|
}
|