1 Star 16 Fork 16

陈不不 / 维普瑞数5解混淆工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hook.py 785 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈不不 提交于 2022-04-10 10:15 . AST解混淆
import websockets
import os
import asyncio
async def get_sesson(ws,path):
if path == '/cbb':
while 1:
recv = await ws.recv()
with open('./weipu.js', 'w', encoding='utf-8') as f:
f.write(recv)
# print(recv)
os.system('node ./astWeiPu.js')
with open('./weipu2.js', encoding='utf-8') as f:
astText = f.read()
print(astText)
await ws.send(astText)
ws.close()
if __name__ == '__main__':
c_loop = asyncio.get_event_loop()
asyncio.set_event_loop(c_loop)
start_server = websockets.serve(get_sesson, '127.0.0.1', 5678)
asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()
1
https://gitee.com/a2833844911cc/AST.git
git@gitee.com:a2833844911cc/AST.git
a2833844911cc
AST
维普瑞数5解混淆工具
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891