This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo on | |
set PATH=%PATH%;C:\Users\....\AppData\Local\Android\Sdk\cmake\3.22.1\bin | |
set ANDROID_NDK=C:/Users/..../AppData/Local/Android/Sdk/ndk/25.1.8937393 | |
mkdir build | |
cd build | |
cmake -DCMAKE_TOOLCHAIN_FILE=%ANDROID_NDK%/build/cmake/android.toolchain.cmake ^ | |
-DANDROID=1 ^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/system/bin/sh | |
set -ex | |
# ENABLE ipv4 forward | |
sysctl -w net.ipv4.ip_forward=1 | |
# DISABLE ipv6 | |
sysctl -w net.ipv6.conf.all.disable_ipv6=1 | |
sysctl -w net.ipv6.conf.default.disable_ipv6=1 |
vm_adb.reg 下面的路径要根据自己放的位置改下
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenBat]
@="vm_adb"
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenBat\command]
@="cmd /c D: && cd D:\\ && vm_adb.vbs"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function log(msg) { | |
console.log(msg); | |
} | |
let handleCache = []; | |
function getRealClassName(object) { | |
const objClass = Java.use("java.lang.Object").getClass.apply(object); | |
return Java.use("java.lang.Class").getName.apply(objClass) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function log(msg) { | |
console.log(msg); | |
} | |
function getRealClassNameByHandle (handle) { | |
let obj = Java.use("java.lang.Object"); | |
log(`[getRealClassNameByHandle] obj => ${obj}`); | |
let jObject = Java.cast(ptr(handle), obj); | |
log(`[getRealClassNameByHandle] jObject => ${jObject}`); | |
let objClass = jObject.getClass(); |
和IDA类似,记录一些内容
全局调试,root下
magisk resetprop ro.debuggable 1
stop
start
- 将
dbgsrv/android_server64
推送到/data/local/tmp
adb push android_server64 /data/local/tmp/ida_android_server64
- 授予权限
adb shell chmod +x /data/local/tmp/ida_android_server64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
04-23 23:23:31.322 10756 10756 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** | |
04-23 23:23:31.322 10756 10756 F DEBUG : Build fingerprint: 'google/flame/flame:11/RQ3A.210805.001.A1/7474174:user/release-keys' | |
04-23 23:23:31.322 10756 10756 F DEBUG : Revision: 'MP1.0' | |
04-23 23:23:31.322 10756 10756 F DEBUG : ABI: 'arm64' | |
04-23 23:23:31.323 10756 10756 F DEBUG : Timestamp: 2023-04-23 23:23:31+0800 | |
04-23 23:23:31.323 10756 10756 F DEBUG : pid: 10736, tid: 10736, name: main >>> ./wxharness <<< | |
04-23 23:23:31.323 10756 10756 F DEBUG : uid: 0 | |
04-23 23:23:31.323 10756 10756 F DEBUG : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 | |
04-23 23:23:31.323 10756 10756 F DEBUG : Cause: null pointer dereference | |
04-23 23:23:31.323 10756 10756 F DEBUG : x0 b4000075d0d7c48f x1 0000000000000000 x2 0000000000000001 x3 616600474f4c5241 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.AppComponentFactory; | |
import android.content.pm.ApplicationInfo; | |
import android.util.Log; | |
import java.io.IOException; | |
import java.nio.ByteBuffer; | |
import java.nio.channels.Channels; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.zip.ZipFile; |
NewerOlder