Runtime Mobile Security (RMS), powered by FRIDA, is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime.
You can easily dump all the loaded classes and relative methods, hook everything on the fly, trace methods args and return value, load custom scripts and many other useful stuff.
Please check below a short video (1min42s) that shows RMS in action on an iOS device. Same functionalities are of course also available for Android devices.
- Solving OWASP UnCrackable Android App Level 1 with Runtime Mobile Security (RMS)
- Solving OWASP UnCrackable Android App Level 2 with Runtime Mobile Security (RMS)
FRIDA server up and running on the target device
Refer to the official FRIDA guide for the installation:
Some cool projects that can help you to auto install, update and run frida on Android devices:
They are not needed on iOS devices, since FRIDA starts just after the boot of the device (jailbreak mode).
- (optional) Create a python virtual environment
pip3 install -r requirements.txt
python3 mobilesecurity.py
- Open your browser at
http://127.0.0.1:5000/
NOTE: In case of issue with your favorite Browser, please use Google Chrome (fully supported).
Runtime Mobile Security (RMS) supports Android and iOS devices.
It has been tested on MacOS and with the following devices:
- AVD emulator
- Genymotion emulator
- Amazon Fire Stick 4K
- iPhone 7
- Chrome (Web Interface)
It should also work well on Windows and Linux but some minor adjustments may be needed.
Do not connect more than one device at the same time. RMS is not so smart at the moment π
NOTE: Socket are not working on Safari, please use Chrome instead.
- Sometime RMS fails to load complex methods. Use a filter when this happens or feel free to improve the algo (agent/RMS_core.js).
- Code is not optimized
- Feel free to send me your best JS sript via a Pull request. I'll be happy to bundle all the best as default scripts in the next RMS release (e.g. root detection bypass, ssl pinning, etc)
NOTE RMS attachs a persistence process called com.android.systemui on Android and SpringBoard on iOS devices to get the list of all the classes that are already loaded in memory before the launch of the target app. If you have an issue with them, try to find a different default package that works well on your device. You can set another default package via the Config Tab or by simply editing the config.json file.
Go back to the dump page in order to have an overview of all the hooked methods that have been executed by the app β
Just add your .js files inside the custom_script folder and they will be automatically loaded by the web interface ready to be executed.
via the API Monitor TAB you can easily monitor tons of Android APIs organized in 20 different Categories. Support can be easily extended by adding more classes/methods to the api_monitor.json file.
You can also monitor native functions: libc.so - open, close, read, write, unlink, remove
Inject the FRIDA script to load the amazing Stetho.
Stetho is a sophisticated debug bridge for Android applications. When enabled, developers have access to the Chrome Developer Tools feature natively part of the Chrome desktop browser. Developers can also choose to enable the optional dumpapp tool which offers a powerful command-line interface to application internals.
A simple File Manager has been implemented to help you exploring app's private folders and files. This feature is still in BETA.
frida-fs has been implemented to enable files download directly from the browser (File Manager TAB).
In order to enable the download button, follow the steps below:
- Open the file called "mobilesecurity.py" and set the BETA variable to True
- Compile the "RMS_Core.js" agent via frida-compile! Just run the command
npm install
directly from the agent folder. A file called "_RMS_Core_BETA.js" will be generated. - Run RMS!
Special thanks to the following Open Source projects for the inspiration:
- Runtime Mobile Security (RMS)
- FSecureLABS
- Mediaservice
- federicodotta
- iddoeldor
- dzonerzy
- akabe1
- Areizen
- int3rf3r3nc3
- dki
- ay-kay
- chaitin
- lich4
- fadeevab
- realgam3
- RootBeer Sample is the DEMO app used to show how RMS works. RootBeer is an amazing root detection library. I decided to use the Sample app as DEMO just to show that, as every client-side only check, its root detection logic can be easily bypassed if not combined with a server-side validation.
- DVIA a vulnerable app to test your iOS Penetration Testing Skills
- Anti-Frida Frida Detection Examples by Bernhard Mueller.
RMS is licensed under a GNU General Public v3 License.