摘要: 1.安装 yum install tcpdump -y2.监视数据包 tcpdump -i eth0 --监控本机的eth0网卡 tcpdump host 192.168.1.120 and \(192.168.1.121 or 192.168.1.122\) --截获多个IP数据包 tcpdum... 阅读全文
posted @ 2014-10-19 20:45 天天AC 阅读(275) 评论(0) 推荐(0)
摘要: 1.首先在code.h中查看PyCodeObject的struct 1 typedef struct { 2 PyObject_HEAD 3 int co_argcount; /* #arguments, except *args */ 4 int co_nlo... 阅读全文
posted @ 2014-10-19 08:44 天天AC 阅读(619) 评论(0) 推荐(0)