Cycript compatible runtime powered by Frida


Keywords
cycript, frida, instrumentation, dynamic, dsl, dynamic-analysis, nowsecure, scripting
License
MIT
Install
npm install mjolner@1.0.5

Documentation

Mjølner

Cycript compatible runtime powered by Frida.

Example

const mjolner = require('mjolner');

mjolner.register();

const puts = int.functionWith(char.constant().pointerTo())(dlsym(RTLD_DEFAULT, 'puts'));
/*
 * ^
 * |
 *  \ Which would be the output from the cycript compiler if you wrote:
 *    extern "C" int puts(char const*)
 */

puts('Hello');