All Projects → nowsecure → frida-fs

nowsecure / frida-fs

Licence: MIT license
Create a stream from a filesystem resource.

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to frida-fs

Frida Ios Hook
A script that helps you trace classes, functions, and modify the return values of methods on iOS platform
Stars: ✭ 151 (+439.29%)
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 (+10450%)
Mutual labels:  frida
frida-screenshot
Grab screenshots using Frida.
Stars: ✭ 35 (+25%)
Mutual labels:  frida
R2frida Wiki
This repo aims at providing practical examples on how to use r2frida
Stars: ✭ 168 (+500%)
Mutual labels:  frida
Command Mobile Penetration Testing Cheatsheet
Mobile penetration testing android & iOS command cheatsheet
Stars: ✭ 221 (+689.29%)
Mutual labels:  frida
Strongr Frida Android
anti-detection version of frida-server for android.
Stars: ✭ 237 (+746.43%)
Mutual labels:  frida
Diff Gui
GUI for Frida -Scripts
Stars: ✭ 146 (+421.43%)
Mutual labels:  frida
frida-mono-api
All the mono c exports, ready to be used in frida!
Stars: ✭ 57 (+103.57%)
Mutual labels:  frida
Frida Skeleton
基于frida的安卓hook框架,提供了很多frida自身不支持的功能,将hook安卓变成简单便捷,人人都会的事情
Stars: ✭ 222 (+692.86%)
Mutual labels:  frida
IPAPatch
Patch iOS Apps, The Easy Way, Without Jailbreak.
Stars: ✭ 301 (+975%)
Mutual labels:  frida
Frida Boot
Frida Boot 👢- A binary instrumentation workshop, with Frida, for beginners!
Stars: ✭ 179 (+539.29%)
Mutual labels:  frida
Fridacontainer
FridaContainer 整合了网上流行的和自己编写的常用的 frida 脚本,为逆向工作提效之用。 frida 脚本模块化,Java & Jni Trace。
Stars: ✭ 190 (+578.57%)
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 (+4714.29%)
Mutual labels:  frida
Fridalib
iOS/android frida library for reversing
Stars: ✭ 153 (+446.43%)
Mutual labels:  frida
iInject
Tool to automate the process of embedding dynamic libraries into iOS applications from GNU/Linux
Stars: ✭ 64 (+128.57%)
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 (+7132.14%)
Mutual labels:  frida
Meduza
A more or less universal SSL unpinning tool for iOS
Stars: ✭ 240 (+757.14%)
Mutual labels:  frida
allsafe
Intentionally vulnerable Android application.
Stars: ✭ 135 (+382.14%)
Mutual labels:  frida
AndroidSec
记录一些我自己在学习Android逆向过程中的有意思的东西
Stars: ✭ 565 (+1917.86%)
Mutual labels:  frida
Learn-Frida
Modding Unity app with Frida tutorial.
Stars: ✭ 143 (+410.71%)
Mutual labels:  frida

frida-fs

Create a stream from a filesystem resource.

Example

const fs = require('frida-fs');

fs.createReadStream('/etc/hosts').pipe(networkStream);
const fs = require('frida-fs');

for (const elm of fs.list("/proc/self/")) {
  console.log(JSON.stringify(elm));
}

console.log(fs.readFileSync("/etc/hosts"));
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].