摘要: XCTF的新手逆向题 题目是pyc的后缀,反编译得到python源码 #!/usr/bin/env python # encoding: utf-8 import base64 def encode(message): s = '' for i in message: x = ord(i) ^ 32 阅读全文
posted @ 2020-01-03 21:16 LuoSpider 阅读(227) 评论(0) 推荐(0) 编辑