All Projects → freehuntx → frida-mono-api

freehuntx / frida-mono-api

Licence: MIT license
All the mono c exports, ready to be used in frida!

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to frida-mono-api

Diff Gui
GUI for Frida -Scripts
Stars: ✭ 146 (+156.14%)
Mutual labels:  frida
Command Mobile Penetration Testing Cheatsheet
Mobile penetration testing android & iOS command cheatsheet
Stars: ✭ 221 (+287.72%)
Mutual labels:  frida
Learn-Frida
Modding Unity app with Frida tutorial.
Stars: ✭ 143 (+150.88%)
Mutual labels:  frida
Frida Ios Hook
A script that helps you trace classes, functions, and modify the return values of methods on iOS platform
Stars: ✭ 151 (+164.91%)
Mutual labels:  frida
Luject
🍹A static injector of dynamic library for application (android, iphoneos, macOS, windows, linux)
Stars: ✭ 203 (+256.14%)
Mutual labels:  frida
Awesome Reverse Engineering
Reverse Engineering Resources About All Platforms(Windows/Linux/macOS/Android/iOS/IoT) And Every Aspect! (More than 3500 open source tools and 2300 posts&videos)
Stars: ✭ 2,954 (+5082.46%)
Mutual labels:  frida
Frida All In One
《FRIDA操作手册》by @hluwa @r0ysue
Stars: ✭ 1,990 (+3391.23%)
Mutual labels:  frida
iInject
Tool to automate the process of embedding dynamic libraries into iOS applications from GNU/Linux
Stars: ✭ 64 (+12.28%)
Mutual labels:  frida
Fridacontainer
FridaContainer 整合了网上流行的和自己编写的常用的 frida 脚本,为逆向工作提效之用。 frida 脚本模块化,Java & Jni Trace。
Stars: ✭ 190 (+233.33%)
Mutual labels:  frida
LibAFL
Advanced Fuzzing Library - Slot your Fuzzer together in Rust! Scales across cores and machines. For Windows, Android, MacOS, Linux, no_std, ...
Stars: ✭ 1,348 (+2264.91%)
Mutual labels:  frida
Fridalib
iOS/android frida library for reversing
Stars: ✭ 153 (+168.42%)
Mutual labels:  frida
Frida Boot
Frida Boot 👢- A binary instrumentation workshop, with Frida, for beginners!
Stars: ✭ 179 (+214.04%)
Mutual labels:  frida
Meduza
A more or less universal SSL unpinning tool for iOS
Stars: ✭ 240 (+321.05%)
Mutual labels:  frida
Awesome Frida
Awesome Frida - A curated list of Frida resources http://www.frida.re/ (https://github.com/frida/frida)
Stars: ✭ 2,025 (+3452.63%)
Mutual labels:  frida
IPAPatch
Patch iOS Apps, The Easy Way, Without Jailbreak.
Stars: ✭ 301 (+428.07%)
Mutual labels:  frida
Magisk Frida
🔐 Run frida-server on boot with Magisk, always up-to-date
Stars: ✭ 144 (+152.63%)
Mutual labels:  frida
Frida Skeleton
基于frida的安卓hook框架,提供了很多frida自身不支持的功能,将hook安卓变成简单便捷,人人都会的事情
Stars: ✭ 222 (+289.47%)
Mutual labels:  frida
AndroidSec
记录一些我自己在学习Android逆向过程中的有意思的东西
Stars: ✭ 565 (+891.23%)
Mutual labels:  frida
frida-screenshot
Grab screenshots using Frida.
Stars: ✭ 35 (-38.6%)
Mutual labels:  frida
Strongr Frida Android
anti-detection version of frida-server for android.
Stars: ✭ 237 (+315.79%)
Mutual labels:  frida

Note: Im currently reworking https://github.com/freehuntx/frida-mono
The new version will include everything from this repo & more!
Current dev branch: https://github.com/freehuntx/frida-mono/tree/feature/v1

This project is in a poc state. Please dont use it in production. Rather use it as inspiration :) Im open for every contribution!

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()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].