├── HotFix ├── HotFix.lua └── hotfix.js ├── InjectFrida ├── LIEFInjectFrida.py ├── SmaliInjectFrida.py └── tools │ ├── APPkeystore.jks │ ├── aapt.exe │ ├── apksignerNew.jar │ ├── baksmali-2.5.2.jar │ ├── frida-gadget-14.2.18-android-arm.so │ ├── frida-gadget-14.2.18-android-arm64.so │ ├── frida-gadget-14.2.18-android-x86.so │ ├── libfrida-gadget.config.so │ └── smali-2.5.2.jar ├── README.md ├── exportCode.py ├── game ├── Frida-cocos-lua-dump.py ├── Frida-mono-dump.py ├── GGHook.js ├── GenShin-3.2-Dump.js └── yuanshenInject.py └── lua └── GGInjector64.lua /HotFix/HotFix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/HotFix/HotFix.lua -------------------------------------------------------------------------------- /HotFix/hotfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/HotFix/hotfix.js -------------------------------------------------------------------------------- /InjectFrida/LIEFInjectFrida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/LIEFInjectFrida.py -------------------------------------------------------------------------------- /InjectFrida/SmaliInjectFrida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/SmaliInjectFrida.py -------------------------------------------------------------------------------- /InjectFrida/tools/APPkeystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/APPkeystore.jks -------------------------------------------------------------------------------- /InjectFrida/tools/aapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/aapt.exe -------------------------------------------------------------------------------- /InjectFrida/tools/apksignerNew.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/apksignerNew.jar -------------------------------------------------------------------------------- /InjectFrida/tools/baksmali-2.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/baksmali-2.5.2.jar -------------------------------------------------------------------------------- /InjectFrida/tools/frida-gadget-14.2.18-android-arm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/frida-gadget-14.2.18-android-arm.so -------------------------------------------------------------------------------- /InjectFrida/tools/frida-gadget-14.2.18-android-arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/frida-gadget-14.2.18-android-arm64.so -------------------------------------------------------------------------------- /InjectFrida/tools/frida-gadget-14.2.18-android-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/frida-gadget-14.2.18-android-x86.so -------------------------------------------------------------------------------- /InjectFrida/tools/libfrida-gadget.config.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/libfrida-gadget.config.so -------------------------------------------------------------------------------- /InjectFrida/tools/smali-2.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/InjectFrida/tools/smali-2.5.2.jar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/README.md -------------------------------------------------------------------------------- /exportCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/exportCode.py -------------------------------------------------------------------------------- /game/Frida-cocos-lua-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/game/Frida-cocos-lua-dump.py -------------------------------------------------------------------------------- /game/Frida-mono-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/game/Frida-mono-dump.py -------------------------------------------------------------------------------- /game/GGHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/game/GGHook.js -------------------------------------------------------------------------------- /game/GenShin-3.2-Dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/game/GenShin-3.2-Dump.js -------------------------------------------------------------------------------- /game/yuanshenInject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/game/yuanshenInject.py -------------------------------------------------------------------------------- /lua/GGInjector64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nszdhd1/UtilScript/HEAD/lua/GGInjector64.lua --------------------------------------------------------------------------------