An open API service indexing awesome lists of open source software.

https://github.com/nowsecure/mjolner

Cycript backend powered by Frida.
https://github.com/nowsecure/mjolner

dsl dynamic-analysis frida nowsecure scripting

Last synced: 6 months ago
JSON representation

Cycript backend powered by Frida.

Awesome Lists containing this project

README

          

# Mjølner

Cycript compatible runtime powered by Frida.

## Example

```js
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');
```