├── .gitignore ├── MyCommon ├── AsmUtil.py ├── CryptoUtil.py ├── Enums.py └── Util.py ├── README.md ├── exec ├── android_server ├── android_server64 ├── frida-server-14.2.18-android-arm ├── frida-server-14.2.18-android-arm64 ├── gdbserver ├── gdbserver64 ├── linux │ └── protoc ├── mac │ └── protoc └── win │ └── protoc.exe ├── kmainForm.py ├── kwindow ├── kmain.py └── kmain.ui ├── requirements.txt ├── resource ├── image-20210129223318402.png ├── image-20210129223348298.png ├── image-20210129223357692.png └── image-20210129223406317.png └── script ├── linux ├── frida32.sh ├── frida64.sh ├── gdb32.sh ├── gdb64.sh ├── ida32.sh ├── ida64.sh ├── kill_debug.sh └── reinstall_android.sh ├── mac ├── frida32.sh ├── frida64.sh ├── gdb32.sh ├── gdb32_tmp.sh ├── gdb64.sh ├── gdb64_tmp.sh ├── ida32.sh ├── ida64.sh ├── kill_debug.sh ├── reinstall_android.sh └── reinstall_android_tmp.sh └── win ├── frida32.bat ├── frida64.bat ├── gdb32.bat ├── gdb64.bat ├── gdb64_tmp.bat ├── ida32.bat ├── ida64.bat ├── kill_debug.bat └── reinstall_android.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/.gitignore -------------------------------------------------------------------------------- /MyCommon/AsmUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/MyCommon/AsmUtil.py -------------------------------------------------------------------------------- /MyCommon/CryptoUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/MyCommon/CryptoUtil.py -------------------------------------------------------------------------------- /MyCommon/Enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/MyCommon/Enums.py -------------------------------------------------------------------------------- /MyCommon/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/MyCommon/Util.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/README.md -------------------------------------------------------------------------------- /exec/android_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/android_server -------------------------------------------------------------------------------- /exec/android_server64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/android_server64 -------------------------------------------------------------------------------- /exec/frida-server-14.2.18-android-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/frida-server-14.2.18-android-arm -------------------------------------------------------------------------------- /exec/frida-server-14.2.18-android-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/frida-server-14.2.18-android-arm64 -------------------------------------------------------------------------------- /exec/gdbserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/gdbserver -------------------------------------------------------------------------------- /exec/gdbserver64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/gdbserver64 -------------------------------------------------------------------------------- /exec/linux/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/linux/protoc -------------------------------------------------------------------------------- /exec/mac/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/mac/protoc -------------------------------------------------------------------------------- /exec/win/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/exec/win/protoc.exe -------------------------------------------------------------------------------- /kmainForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/kmainForm.py -------------------------------------------------------------------------------- /kwindow/kmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/kwindow/kmain.py -------------------------------------------------------------------------------- /kwindow/kmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/kwindow/kmain.ui -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/image-20210129223318402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/resource/image-20210129223318402.png -------------------------------------------------------------------------------- /resource/image-20210129223348298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/resource/image-20210129223348298.png -------------------------------------------------------------------------------- /resource/image-20210129223357692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/resource/image-20210129223357692.png -------------------------------------------------------------------------------- /resource/image-20210129223406317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/resource/image-20210129223406317.png -------------------------------------------------------------------------------- /script/linux/frida32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/frida32.sh -------------------------------------------------------------------------------- /script/linux/frida64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/frida64.sh -------------------------------------------------------------------------------- /script/linux/gdb32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/gdb32.sh -------------------------------------------------------------------------------- /script/linux/gdb64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/gdb64.sh -------------------------------------------------------------------------------- /script/linux/ida32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/ida32.sh -------------------------------------------------------------------------------- /script/linux/ida64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/ida64.sh -------------------------------------------------------------------------------- /script/linux/kill_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/kill_debug.sh -------------------------------------------------------------------------------- /script/linux/reinstall_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/linux/reinstall_android.sh -------------------------------------------------------------------------------- /script/mac/frida32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/frida32.sh -------------------------------------------------------------------------------- /script/mac/frida64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/frida64.sh -------------------------------------------------------------------------------- /script/mac/gdb32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/gdb32.sh -------------------------------------------------------------------------------- /script/mac/gdb32_tmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/gdb32_tmp.sh -------------------------------------------------------------------------------- /script/mac/gdb64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/gdb64.sh -------------------------------------------------------------------------------- /script/mac/gdb64_tmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/gdb64_tmp.sh -------------------------------------------------------------------------------- /script/mac/ida32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/ida32.sh -------------------------------------------------------------------------------- /script/mac/ida64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/ida64.sh -------------------------------------------------------------------------------- /script/mac/kill_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/kill_debug.sh -------------------------------------------------------------------------------- /script/mac/reinstall_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/reinstall_android.sh -------------------------------------------------------------------------------- /script/mac/reinstall_android_tmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/mac/reinstall_android_tmp.sh -------------------------------------------------------------------------------- /script/win/frida32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/frida32.bat -------------------------------------------------------------------------------- /script/win/frida64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/frida64.bat -------------------------------------------------------------------------------- /script/win/gdb32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/gdb32.bat -------------------------------------------------------------------------------- /script/win/gdb64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/gdb64.bat -------------------------------------------------------------------------------- /script/win/gdb64_tmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/gdb64_tmp.bat -------------------------------------------------------------------------------- /script/win/ida32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/ida32.bat -------------------------------------------------------------------------------- /script/win/ida64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/ida64.bat -------------------------------------------------------------------------------- /script/win/kill_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/kill_debug.bat -------------------------------------------------------------------------------- /script/win/reinstall_android.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqzg12300/kAlgorithmTools/HEAD/script/win/reinstall_android.bat --------------------------------------------------------------------------------