-
Notifications
You must be signed in to change notification settings - Fork 0
APK 逆向2
Odoiys edited this page Sep 16, 2019
·
5 revisions
上网查阅发现需要用到c#神器推荐一款c#反汇编神器 dnspy
代码直接放在下面,这个和逆向的题目还有点差距
import http.server
server_address = ('127.0.0.1', 31337)
handler_class = http.server.BaseHTTPRequestHandler
httpd = http.server.HTTPServer(server_address, handler_class)
httpd.serve_forever()
方法使用python写监听好像,大概是这样,小白不太懂
e
新的