All Projects → nowsecure → Mjolner

nowsecure / Mjolner

Licence: mit
Cycript backend powered by Frida.

Programming Languages

javascript
184084 projects - #8 most used programming language
dsl
153 projects
scripting
82 projects

Projects that are alternatives of or similar to Mjolner

Airspy
AirSpy - Frida-based tool for exploring and tracking the evolution of Apple's AirDrop protocol implementation on i/macOS, from the server's perspective. Released during BH USA 2019 Training https://www.nowsecure.com/event/advanced-frida-and-radare-a-hackers-delight/
Stars: ✭ 116 (+954.55%)
Mutual labels:  frida, dynamic-analysis
R2frida
Radare2 and Frida better together.
Stars: ✭ 610 (+5445.45%)
Mutual labels:  frida, dynamic-analysis
allsafe
Intentionally vulnerable Android application.
Stars: ✭ 135 (+1127.27%)
Mutual labels:  dynamic-analysis, frida
Frida Snippets
Hand-crafted Frida examples
Stars: ✭ 1,081 (+9727.27%)
Mutual labels:  frida, dynamic-analysis
Awesome Frida
Awesome Frida - A curated list of Frida resources http://www.frida.re/ (https://github.com/frida/frida)
Stars: ✭ 2,025 (+18309.09%)
Mutual labels:  frida, dynamic-analysis
R2frida Wiki
This repo aims at providing practical examples on how to use r2frida
Stars: ✭ 168 (+1427.27%)
Mutual labels:  frida, dynamic-analysis
Medusa
Binary instrumentation framework based on FRIDA
Stars: ✭ 258 (+2245.45%)
Mutual labels:  frida, dynamic-analysis
Frida Core
Frida core library intended for static linking into bindings
Stars: ✭ 398 (+3518.18%)
Mutual labels:  frida
Crosshair
An analysis tool for Python that blurs the line between testing and type systems.
Stars: ✭ 586 (+5227.27%)
Mutual labels:  dynamic-analysis
Engine
Droidefense: Advance Android Malware Analysis Framework
Stars: ✭ 386 (+3409.09%)
Mutual labels:  dynamic-analysis
Frida Gum
Cross-platform instrumentation and introspection library written in C
Stars: ✭ 357 (+3145.45%)
Mutual labels:  frida
Frida Fuzzer
This experimetal fuzzer is meant to be used for API in-memory fuzzing.
Stars: ✭ 415 (+3672.73%)
Mutual labels:  frida
Qbdi
A Dynamic Binary Instrumentation framework based on LLVM.
Stars: ✭ 801 (+7181.82%)
Mutual labels:  frida
Jackhammer
Jackhammer - One Security vulnerability assessment/management tool to solve all the security team problems.
Stars: ✭ 633 (+5654.55%)
Mutual labels:  dynamic-analysis
Jnitrace
A Frida based tool that traces usage of the JNI API in Android apps.
Stars: ✭ 534 (+4754.55%)
Mutual labels:  frida
Symbolic Execution
History of symbolic execution (as well as SAT/SMT solving, fuzzing, and taint data tracking)
Stars: ✭ 395 (+3490.91%)
Mutual labels:  dynamic-analysis
Fsmon
monitor filesystem on iOS / OS X / Android / FirefoxOS / Linux
Stars: ✭ 635 (+5672.73%)
Mutual labels:  dynamic-analysis
Enlightn
Your performance & security consultant, an artisan command away.
Stars: ✭ 378 (+3336.36%)
Mutual labels:  dynamic-analysis
Fromjs
See where each character on the screen came from in code.
Stars: ✭ 537 (+4781.82%)
Mutual labels:  dynamic-analysis
Awesome Symbolic Execution
A curated list of awesome symbolic execution resources including essential research papers, lectures, videos, and tools.
Stars: ✭ 634 (+5663.64%)
Mutual labels:  dynamic-analysis

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');
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].