添加调试命令行工具unpickle
This commit is contained in:
parent
c2d7b0fe51
commit
d605c89fed
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
X:\PEinjector\env\python X:\dbgtools\unpickle.py %1
|
||||||
|
pause
|
|
@ -0,0 +1,4 @@
|
||||||
|
import sys
|
||||||
|
import pickle
|
||||||
|
with open(sys.argv[1], "rb") as file:
|
||||||
|
print(repr(pickle.load(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": []
|
||||||
|
}
|
Loading…
Reference in New Issue