From bc501953692502ff5cb6c1a76a4396e7761ed7b0 Mon Sep 17 00:00:00 2001 From: Daniel Baier Date: Wed, 20 Nov 2024 13:23:56 +0100 Subject: [PATCH] updating README.md and USAGE.md with the new features --- README.md | 2 +- USAGE.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7db62ae..fc9f9da 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ from friTap import SSL_Logger ``` For more details on integrating friTap into your Python project, check out the [INTEGRATION.md](./INTEGRATION.md) guide. -friTap allows you to enhance its functionality by providing a custom Frida script during your session. To do so, use the `-c` parameter ([more](./USAGE.md#Using-friTap-with-a-custom-Frida-scripts)). +friTap allows you to enhance its functionality by providing a custom Frida script during your session. This custom script will be invoked just before friTap applies its own hooks. To do so, use the `-c` parameter ([more](./USAGE.md#Using-friTap-with-a-custom-Frida-scripts)). More examples on using friTap can be found in the [USAGE.md](./USAGE.md). A detailed introduction using friTap on Android is under [EXAMPLE.md](./EXAMPLE.md) as well. ## Hooking Libraries Without Symbols diff --git a/USAGE.md b/USAGE.md index 204be78..af4646f 100644 --- a/USAGE.md +++ b/USAGE.md @@ -207,7 +207,7 @@ This category hooks the SSL_Write function, which is responsible for writing enc ## Using friTap with a custom Frida scripts -This guide explains how to use friTap with a custom Frida script to enhance its functionality. Using the `-c` parameter, you can specify a custom script to be executed during the friTap session. +This guide explains how to use friTap with a custom Frida script to enhance its functionality. Using the `-c` parameter, you can specify a custom script to be executed during the friTap session. This custom script will be invoked just before friTap applies its own hooks. ---