|
|
发表于 2024-12-6 16:57:52
|
显示全部楼层
crack.py 88行的 create_payload 改成这样试试
- def create_payload():
- with open("ping1.template", "r", encoding="utf-8") as file:
- template = file.read()
- with open("ping1", "w", encoding="utf-8") as file:
- file.write(template.replace("{{LOCAL_IP}}", LOCAL_IP).replace("{{PORT}}", str(PORT)))
复制代码 |
|