Frida Scripts Collection

Browse 50 Frida scripts for iOS and Android reverse engineering, security research, and mobile app analysis.

Showing 21-40 of 50 scripts
Search results for: "hook" Clear search

iOS Walk Spoofer

0 likes 4 views

This Frida script hooks into Apple’s CoreLocation framework to simulate a moving GPS location on iOS apps. It intercepts CLLocationManager methods and continuously delivers fake location updates that ...

View Script

iOS KeyChain

0 likes 4 views

Monitor and log all interactions with the iOS Keychain by hooking key Security framework APIs: SecItemAdd, SecItemCopyMatching, SecItemUpdate, and SecItemDelete. These APIs are responsible for adding,...

View Script

AndroidTLSKeylogger

0 likes 4 views

This project hooks common SSL libraries on Android to intercept TLS functions. By attaching to the SSL_CTX_new function and installing the SSL_CTX_set_keylog_callback on exit, it prints SSL/TLS sessio...

View Script

extractcerts

0 likes 4 views

A script that will extract/intercept certificates from the Android+OpenSSL based binary by hooking the i2d_X509 function to retrieve it's DER content.

View Script

ios-tls-keylogger

0 likes 4 views

Hooks libboringssl.dylib to extract TLS keys and enables decryption of network traffic from iOS apps to be decrypted. Tested on iPhone 5s running iOS 12.4.2 jailbroken with Checkrain.

View Script