You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: overrides/frida/README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ The scripts can automatically handle:
62
62
-l ./config.js \
63
63
-l ./ios/ios-connect-hook.js \
64
64
-l ./native-tls-hook.js \
65
+
-l ./native-connect-hook.js \
65
66
-f $APP_ID
66
67
```
67
68
7. Explore, examine & modify all the traffic you're interested in! If you have any problems, please [open an issue](https://github.com/httptoolkit/frida-interception-and-unpinning/issues/new) and help make these scripts even better.
@@ -98,7 +99,7 @@ Each script includes detailed documentation on what it does and how it works in
98
99
99
100
This is a low-level hook that applies to _all_ network connections. This ensures that all connections are forcibly redirected to the target proxy server, even those which ignore proxy settings or make other raw socket connections.
100
101
101
-
This hook applies to libc, and works for Android, Linux, and many related environments (but not iOS or Mac).
102
+
This hook applies to libc, and works for Android, Linux, iOS, and many other related environments.
102
103
103
104
*`native-tls-hook.js`
104
105
@@ -138,7 +139,7 @@ Each script includes detailed documentation on what it does and how it works in
138
139
139
140
You probably don't want to use this normally as part of interception itself, but it can be very useful as part of your configuration setup.
140
141
141
-
This script allows you to configure a list of possible IP addresses and a target port, and have the process test each address, and send a message to the Frida client for the first reachable address provided. This can be useful for automated configuration processeses, if you don't know which IP address is best to use to reach the proxy server (your computer) from the target device (your phone).
142
+
This script allows you to configure a list of possible IP addresses and a target port, and have the process test each address, and send a message to the Frida client for the first reachable address provided. This can be useful for automated configuration processes, if you don't know which IP address is best to use to reach the proxy server (your computer) from the target device (your phone).
0 commit comments