mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-30 03:15:38 -05:00
73 lines
1.9 KiB
Markdown
73 lines
1.9 KiB
Markdown
|
# Getting Started
|
||
|
|
||
|
## replace hook function
|
||
|
|
||
|
```
|
||
|
extern "C" {
|
||
|
extern int DobbyHook(void *function_address, void *replace_call, void **origin_call);
|
||
|
}
|
||
|
|
||
|
size_t (*origin_fread)(void * ptr, size_t size, size_t nitems, FILE * stream);
|
||
|
|
||
|
size_t (fake_fread)(void * ptr, size_t size, size_t nitems, FILE * stream) {
|
||
|
// Do What you Want.
|
||
|
return origin_fread(ptr, size, nitems, stream);
|
||
|
}
|
||
|
|
||
|
DobbyHook((void *)fread, (void *)fake_fread, (void **)&origin_fread);
|
||
|
```
|
||
|
|
||
|
## instrument function
|
||
|
|
||
|
```
|
||
|
|
||
|
uintptr_t getCallFirstArg(RegisterContext *ctx) {
|
||
|
uintptr_t result;
|
||
|
#if defined(_M_X64) || defined(__x86_64__)
|
||
|
#if defined(_WIN32)
|
||
|
result = ctx->general.regs.rcx;
|
||
|
#else
|
||
|
result = ctx->general.regs.rdi;
|
||
|
#endif
|
||
|
#elif defined(__arm64__) || defined(__aarch64__)
|
||
|
result = ctx->general.regs.x0;
|
||
|
#elif defined(__arm__)
|
||
|
result = ctx->general.regs.r0;
|
||
|
#else
|
||
|
#error "Not Support Architecture."
|
||
|
#endif
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
void format_integer_manually(char *buf, uint64_t integer) {
|
||
|
int tmp = 0;
|
||
|
for (tmp = integer; tmp > 0; tmp = (tmp >> 4)) {
|
||
|
buf += (tmp % 16);
|
||
|
buf--;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// [ATTENTION]:
|
||
|
// printf will call 'malloc' internally, and will crash in a loop.
|
||
|
// so, use 'puts' is a better choice.
|
||
|
void malloc_handler(RegisterContext *ctx, const HookEntryInfo *info) {
|
||
|
size_t size_ = 0;
|
||
|
size_ = getCallFirstArg(ctx);
|
||
|
char *buffer = "[-] function malloc first arg: 0x00000000.\n";
|
||
|
format_integer_manually(strchr(buffer, '.') - 1, size_);
|
||
|
puts(buffer);
|
||
|
}
|
||
|
|
||
|
DobbyInstrument((void *)malloc, malloc_handler)
|
||
|
```
|
||
|
|
||
|
## replace pac function
|
||
|
|
||
|
```
|
||
|
void *posix_spawn_ptr = __builtin_ptrauth_strip((void *)posix_spawn, ptrauth_key_asia);
|
||
|
void *fake_posix_spawn_ptr = __builtin_ptrauth_strip((void *)fake_posix_spawn, ptrauth_key_asia);
|
||
|
|
||
|
DobbyHook((void *)posix_spawn_ptr, (void *)fake_posix_spawn_ptr, (void **)&orig_posix_spawn);
|
||
|
|
||
|
*(void **)&orig_posix_spawn = (void *)ptrauth_sign_unauthenticated((void *)orig_posix_spawn, ptrauth_key_asia, 0);
|
||
|
```
|