摘要: exe2shellcode shellcode2exe 阅读全文
posted @ 2019-04-08 15:48 乘于时 阅读(542) 评论(0) 推荐(0) 编辑
摘要: // 转自: https://blog.csdn.net/Jailman/article/details/77573990import sys import psutil import ctypes from ctypes import * PAGE_EXECUTE_READWRITE = 0x00000040 PROCESS_ALL_ACCESS = ... 阅读全文
posted @ 2019-04-08 15:37 乘于时 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: #python 调用Windows API(使用IDLE开发环境)from ctypes import *msvcrt = cdll.LoadLibrary('msvcrt')for i in 'love': msvcrt.printf(i) #python 调用Windows API(使用VS开发 阅读全文
posted @ 2019-04-08 15:15 乘于时 阅读(7545) 评论(0) 推荐(0) 编辑