lyshark

Results 16 comments of lyshark

您好,需要在cmd命令行执行pip install LyScript

您已经安装了,可以编程了,x64dbg插件请放入对应版本的x64dbg程序内。

最新版的x64dbg,已经测试过不会有任何问题

您好,更新需要等功能反馈多时一并处理,项目会持续更新请耐心等待

您好,已找到方法。 >>> from LyScript32 import MyDebug >>> >>> dbg = MyDebug() >>> >>> conn = dbg.connect() >>> ref = dbg.run_command_exec("$addr=1024") >>> ref True >>> ref = dbg.run_command_exec("eax=$addr") >>> ref True...

![image](https://user-images.githubusercontent.com/52789403/180203804-e2e13b8b-c947-4623-b29f-000a4bda9be1.png)

```Python from LyScript32 import MyDebug # 得到脚本返回值 def GetScriptValue(dbg,script): try: ref = dbg.run_command_exec("push eax") if ref != True: return None ref = dbg.run_command_exec(f"eax={script}") if ref != True: return None reg...

![image](https://user-images.githubusercontent.com/52789403/168527125-79d81afc-54a9-448d-b2da-8a7395126447.png) 入口处获取到的参数是0,会返回False