├── .idea ├── .gitignore ├── .name ├── Phi-LocalAction-python.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsonSchemas.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── DecryptSave.py ├── EncryptJsonSave.py ├── EncryptSave.py ├── FormatSave.py ├── GetSave.py ├── GetSession.py ├── Json_Info.md ├── LICENSE.txt ├── PhiLocalLib ├── ActionLib.py ├── DecryptPgrLocalSave.py ├── EncryptPgrLocalSave.py ├── FormatPgrLocalSave.py ├── GetPgrLocalSave.py ├── GetPgrUserdata.py ├── ModifyPgrLocalSave.py ├── __init__.py ├── abe.jar ├── adb │ ├── AdbWinApi.dll │ ├── AdbWinUsbApi.dll │ └── adb.exe ├── config.ini └── requirement.txt ├── README.md └── fuck_adb.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Phi-LocalAction-python -------------------------------------------------------------------------------- /.idea/Phi-LocalAction-python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/Phi-LocalAction-python.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsonSchemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/jsonSchemas.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DecryptSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/DecryptSave.py -------------------------------------------------------------------------------- /EncryptJsonSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/EncryptJsonSave.py -------------------------------------------------------------------------------- /EncryptSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/EncryptSave.py -------------------------------------------------------------------------------- /FormatSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/FormatSave.py -------------------------------------------------------------------------------- /GetSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/GetSave.py -------------------------------------------------------------------------------- /GetSession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/GetSession.py -------------------------------------------------------------------------------- /Json_Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/Json_Info.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PhiLocalLib/ActionLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/ActionLib.py -------------------------------------------------------------------------------- /PhiLocalLib/DecryptPgrLocalSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/DecryptPgrLocalSave.py -------------------------------------------------------------------------------- /PhiLocalLib/EncryptPgrLocalSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/EncryptPgrLocalSave.py -------------------------------------------------------------------------------- /PhiLocalLib/FormatPgrLocalSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/FormatPgrLocalSave.py -------------------------------------------------------------------------------- /PhiLocalLib/GetPgrLocalSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/GetPgrLocalSave.py -------------------------------------------------------------------------------- /PhiLocalLib/GetPgrUserdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/GetPgrUserdata.py -------------------------------------------------------------------------------- /PhiLocalLib/ModifyPgrLocalSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/ModifyPgrLocalSave.py -------------------------------------------------------------------------------- /PhiLocalLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhiLocalLib/abe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/abe.jar -------------------------------------------------------------------------------- /PhiLocalLib/adb/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/adb/AdbWinApi.dll -------------------------------------------------------------------------------- /PhiLocalLib/adb/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/adb/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /PhiLocalLib/adb/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/adb/adb.exe -------------------------------------------------------------------------------- /PhiLocalLib/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/PhiLocalLib/config.ini -------------------------------------------------------------------------------- /PhiLocalLib/requirement.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | lxml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/README.md -------------------------------------------------------------------------------- /fuck_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wms26/Phi-LocalAction-python/HEAD/fuck_adb.py --------------------------------------------------------------------------------