添加调试命令行工具unpickle

This commit is contained in:
cxykevin 2024-02-12 12:27:55 +08:00
parent c2d7b0fe51
commit d605c89fed
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,3 @@
@echo off
X:\PEinjector\env\python X:\dbgtools\unpickle.py %1
pause

View File

@ -0,0 +1,4 @@
import sys
import pickle
with open(sys.argv[1], "rb") as file:
print(repr(pickle.load(file)))

View File

@ -0,0 +1,38 @@
{
"version": "0.0.1",
"name": "debug",
"author": "cxykevin",
"introduce": "PEinjector/命令行工具",
"compatibility": {
"injector": {
"min": "0.0.1"
}
},
"load": {
"symlink": true,
"mode": {
"onload": [
{
"type": "copy",
"from": "dbgtools",
"to": "X:/dbgtools"
}
]
}
},
"start": {
"icon": {
"name": "cmd",
"command": "X:/Windows/system32/cmd.exe",
"icon": "X:/Windows/system32/cmd.exe"
},
"path": [
"X:/dbgtools"
]
},
"keywords": [
"debug",
"PEinjector"
],
"dependence": []
}