npm.io
0.0.5 • Published 8 years ago

frida-mono-api

Licence
MIT
Version
0.0.5
Deps
1
Size
36 kB
Vulns
0
Weekly
0
Stars
75

frida-mono-api

This module is meant to be used inside of a frida module.
An easy injector can be found here: frida-inject

It will give you access to the mono c functions, exported by mono.
For easy use, there are some helper methods you should check out.

Note

The functions exposed by "MonoApi" are "ExNativefunctions".
They have some more properties for easy use. See: frida-ex-nativefunction

Example

Using helper
import { MonoApiHelper } from 'frida-mono-api'

MonoApiHelper.AssemblyForeach(assembly => console.log(assembly))
Using api
import { MonoApi } from 'frida-mono-api'

const domain = MonoApi.mono_domain_get()

Keywords