python
文章平均质量分 77
sam20151111sam
这个作者很懒,什么都没留下…
展开
-
python 调用 c++类
转载自:http://stackoverflow.com/questions/7161349/help-required-using-a-class-in-extension-dll-through-ctypestest.cpp:#include #include using namespace std;class A { string name; public转载 2015-01-10 10:36:45 · 525 阅读 · 0 评论 -
python 调用加密函数dll
test.py:import ctypeslib = ctypes.CDLL('TCPSocket.dll')def opaque_ptr(name): cls = type(name, (ctypes.Structure,),{}) return ctypes.POINTER(cls)class CTCPSocket(object): _CTCPSo转载 2015-01-12 10:44:51 · 939 阅读 · 0 评论 -
wireshark过滤语法总结 (转载)
转载自:http://blog.csdn.net/cumirror/article/details/7054496[-]捕捉过滤器--捕捉前依据协议的相关信息进行过滤设置显示过滤器--对捕捉到的数据包依据协议或包的内容进行过滤做应用识别这一块经常要对应用产生的数据流量进行分析。抓包采用wireshark,提取特征时,要对session进行过滤,找到关键的stream,这转载 2015-03-09 20:57:40 · 334 阅读 · 0 评论 -
编写immunity debugger插件
__VERSION__ = '2.0'__REV__ = filter(str.isdigit, '$Revision: 557 $')__IMM__ = '1.8'__DEBUGGERAPP__ = ''arch = 32win7mode = False# try:# import debugger# except:# passtry:转载 2015-05-05 22:24:02 · 959 阅读 · 0 评论