From 286d04fac386e7569b96cb7c8130b7912048148a Mon Sep 17 00:00:00 2001 From: Yuvraj Saxena Date: Thu, 25 Jan 2024 02:50:38 +0530 Subject: [PATCH] c-api: Add project based on frida-gum Signed-off-by: Yuvraj Saxena --- _i18n/en/_docs/c-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_i18n/en/_docs/c-api.md b/_i18n/en/_docs/c-api.md index 1632cb53..7fa5897b 100644 --- a/_i18n/en/_docs/c-api.md +++ b/_i18n/en/_docs/c-api.md @@ -22,6 +22,8 @@ See the [frida-core](https://github.com/frida/frida-core) repository for the sou frida-gum allows you to augment and replace functions using C. +[This project](https://github.com/0xXA/snapchat-emulator-bypass) shows you how to augment `open`, `execve`, `__system_property_find`, and `__system_property_get` as well as how a patch can be applied from c only. + The example in the devkit shows you how to augment `open` and `close` from C only. See the [frida-gum](https://github.com/frida/frida-gum) repository for the source.