Skip to content

Commit

Permalink
Hook native Android OpenSSL too
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Mar 5, 2024
1 parent a122313 commit 9731e4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion native-tls-hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
const TARGET_LIBS = [
{ name: 'libboringssl.dylib', hooked: false }, // iOS primary TLS implementation
{ name: 'libsscronet.so', hooked: false }, // Cronet on Android
{ name: 'boringssl', hooked: false } // Bundled by some apps e.g. TikTok on iOS
{ name: 'boringssl', hooked: false }, // Bundled by some apps e.g. TikTok on iOS
{ name: 'libssl.so', hooked: false }, // Native OpenSSL in Android
];

TARGET_LIBS.forEach((targetLib) => {
Expand Down

0 comments on commit 9731e4b

Please sign in to comment.