├── 360dumpfix.idb ├── 360dumpfix.so ├── README.md ├── hidden.dex ├── libjiagu.idb ├── libjiagu.so ├── maps.txt ├── run.sh ├── start.sh ├── wutiao-pass-360-dbg.apk └── wutiao360.apk /360dumpfix.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/360dumpfix.idb -------------------------------------------------------------------------------- /360dumpfix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/360dumpfix.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Files dump or get from 360 android app guard by reverse engineering. 2 | # File Description 3 | - 360dumpfix.so memory dumped so from libjiagu.so 4 | - 360dumpfix.idb IDA 7.0 idb file 5 | - hidden.dex memory dumped dex from 360 jiagu 6 | - wutiao360.apk 360 jiagu apk 7 | - wutiao-pass-360-dbg.apk apk that patch that all anti debug has passed. 8 | - maps.txt memory maping when dumping so from libjiagu.so 9 | -------------------------------------------------------------------------------- /hidden.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/hidden.dex -------------------------------------------------------------------------------- /libjiagu.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/libjiagu.idb -------------------------------------------------------------------------------- /libjiagu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/libjiagu.so -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | adb shell "am start -D -n com.kingnet.fiveline/com.kingnet.fiveline.ui.welcome.WelcomeActivity" 2 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | PORT=$1 2 | if [ x$PORT="x" ]; then 3 | PORT=8700 4 | fi 5 | jdb -connect com.sun.jdi.SocketAttach:port=$PORT,hostname=localhost 6 | -------------------------------------------------------------------------------- /wutiao-pass-360-dbg.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/wutiao-pass-360-dbg.apk -------------------------------------------------------------------------------- /wutiao360.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maiyao1988/360reverse/c0ac2657259b89ea390e2226f5059ca5ffd65077/wutiao360.apk --------------------------------------------------------------------------------