diff options
| author | auth12 <[email protected]> | 2020-08-01 11:15:55 -0700 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-08-01 11:15:55 -0700 |
| commit | 5bbda279685f52693d4f5d9cb1500e295e06fc1e (patch) | |
| tree | 87cc4aa993afe879f8b5dffbbe7013dcf8e5dc44 /client/src/security/security.h | |
| parent | Added server support for both x64 and x32 images with automatic selection. (diff) | |
| download | loader-5bbda279685f52693d4f5d9cb1500e295e06fc1e.tar.xz loader-5bbda279685f52693d4f5d9cb1500e295e06fc1e.zip | |
Started security.
Diffstat (limited to 'client/src/security/security.h')
| -rw-r--r-- | client/src/security/security.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/security/security.h b/client/src/security/security.h new file mode 100644 index 0000000..6a765d9 --- /dev/null +++ b/client/src/security/security.h @@ -0,0 +1,13 @@ +#pragma once + + +namespace security { + struct patch_t { + uintptr_t va; + uint8_t original_op; + uint8_t patched_op; + std::string module; + }; + + void thread(tcp::client &client); +};
\ No newline at end of file |