Turn your Frida hooks into REST APIs. Deploy to device fleets instantly.
No server setup. No infrastructure.
Traditional Frida requires a PC. We don't.
Your device runs standalone. No USB/ADB required. Deploy from anywhere.
Deploy scripts from web dashboard. Manage device fleets. Real-time logs.
Update hook logic without restart. File watch auto-reload. Instant effect.
Hook, analyze, automate
Capture API requests, decrypt traffic, extract tokens.
Fuzz app functions at runtime. Test edge cases.
Run hooks on device farms at scale. API-driven.
Four steps to remote Frida
Flash Magisk + Zygisk
Download our APK
Frida JavaScript
Deploy remotely
Your hook logic, in familiar JavaScript.
Deep access to app internals via Frida's API.
// Hook any Java method on your device Java.perform(function() { var MainActivity = Java.use("com.app.MainActivity"); MainActivity.getSecret.implementation = function() { var result = this.getSecret(); send({ type: "secret", value: result }); return result; }; });
$ curl -X POST https://frida.run/api/hook/capture-token \ -H "Authorization: Bearer YOUR_TOKEN" \ -d '{"package": "com.target.app"}' # Response { "task_id": "task_abc123", "status": "deployed", "device": "dev-001" }
One POST request. Hook deployed.
Pass parameters, target devices, get task ID.
No PC. No USB. Just cloud.
| Feature | Traditional Frida + PC | FridaRun |
|---|---|---|
| PC Required | ✓ Always | ✗ Never |
| Cloud Deploy | ✗ | ✓ One API Call |
| Fleet Control | ✗ Manual | ✓ Dashboard |
| Hot Reload | Limited | ✓ File Watch |
| Data Callback | Console/File | ✓ WebSocket/API |