Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- kaslr
- top chunk
- windows kernel
- 계산기
- RAO
- house of force
- WinDBG
- brop
- JOP
- patchelf
- HOS
- elf 헤더
- PLT
- kernel debug
- dangling pointer
- windows
- return to libraty
- ntwritefile
- frida-dump
- libc.so
- randtbl
- libc-database
- SCP
- cmake
- canary leak
- pwndbg
- fastbin
- sgerrand
- ioploaddrivers
- Android
Archives
- Today
- Total
목록Frida (1)
sh711 님의 블로그

1. 개요보통 일반적인 안드로이드 어플은 네이티브 라이브러리를 사용한다.CMake 및 ndk-module을 통해 어플 런타임 중 호출되어 C/C++ 모듈을 사용할 수 있다.Kotlin에서의 생성자를 통한 라이브러리 호출// MainActivity Classval calculator = Calculator()// Calculator Classcompanion object { init { System.loadLibrary("calculator-lib") } } 2. 라이브러리 호출frida를 통한 로드된 모듈 및 베이스 주소 확인var modules = Process.enumerateModules();modules.forEach(module => { c..
Study/Android
2025. 3. 12. 01:25