每个人都要有一个骨灰级的爱好,不为金钱,而纯粹是为了在这个领域享受追寻真理的快乐。
发布时间:2013-02-08 01:23:30
利用fread/fwrite函数分批读取文本内容,对目标文件大小适应性好.#include <stdio.h>#include <getopt.h>#include <stdlib.h>#include <errno.h>#include <string.h>#define BUFSIZE 8192#define SWPFILE "./.swp"static struct option opts[] = { {.name = "number", .has_arg = 1, .val = 'n'}, {.n.........【阅读全文】
发布时间:2012-06-22 12:44:13
获得eth0接口所有信息:#include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <sys/stat.h>#include <unistd.h>#include <sys/ioctl.h>#include <sys/socket.h>#include <netinet/in.h>#include <arp.........【阅读全文】
发布时间:2012-06-22 00:59:59
输入需要监听的网卡,再输入监听的arp广播包,内网只有几台客户端的话,捕获30个数据包左右,内网机器数量大的话,监听个上百个包吧,可能等待时间长一点。静默分析完数据包后,开始循环发arp欺骗应答。需要pcap和libnet的开发包,ubuntu系统执行 apt-get install -y libpcap-dev libnet-dev 命令即可。编译命令: gcc -o f.........【阅读全文】