• 大小: 8KB
    文件类型: .cpp
    金币: 2
    下载: 1 次
    发布日期: 2021-07-23
  • 语言: C/C++
  • 标签: WinPCAP  FTP  

资源简介

用 WinPCAP 监听并分析 FTP 协议并记录 IP、用户名、密码和登陆是否 成功

资源截图

代码片段和文件信息

#define _CRT_SECURE_NO_WARNINGS
#define HAVE_REMOTE
#include 
#include 
#include 
#include 
#include 
#pragma comment(lib “Packet“)
#pragma comment(lib “wpcap“)
#pragma comment(lib “WS2_32“)

u_char user[20];//用户名
u_char pass[20];//密码
//TCP首部
typedef struct tcp_header
{
u_short sport;//源程序的端口号
u_short dsport;//目的程序的端口号
u_int seq;//序列号 SN
u_int ack_num;//确认号
u_char ihl; //Internet 头部长度
u_char frame;
u_short wsize;//窗口大小
u_short crc; //check sum
u_short urg;
}tcp_header;
/* IPv4 首部 */
typedef struct ip_header {
u_char ver_ihl; // Version (4 bits) +Internet header length (4 bits)
u_char tos; // Type of service
u_short tlen; // Total length
u_short identification; // Identification
u_short flags_fo; // Flags (3 bits) + Fragmentoffset (13 bits)
u_char ttl; // Time to live
u_char proto; // Protocol
u_short crc; // Header checksum
u_char saddr[4]; // Source address
u_char daddr[4]; // Destination address
u_int op_pad; // Option + Padding
} ip_header;

//以太网的帧格式
typedef struct mac_header {
u_char dest_addr[6];
u_char src_addr[6];
u_char type[2];
} mac_header;

/* 回调函数原型 */
void packet_handler(u_char *param const struct pcap_pkthdr *header const u_char *pkt_data);

int main()
{
pcap_if_t *alldevs;
pcap_if_t *d;
int inum;
int i = 0;
pcap_t *adhandle;
char errbuf[PCAP_ERRBUF_SIZE];
u_int netmask;


/*
过滤的规则
*/
char packet_filter[] = “port 21“;//ftp的端口是21


struct bpf_program fcode;

/* 获得设备列表 */
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING NULL &alldevs errbuf) == -1)
{
fprintf(stderr “Error in pcap_findalldevs: %s\n“ errbuf);
exit(1);
}

/* 打印列表 */
for (d = alldevs; d; d = d->next)
{
printf(“%d. %s“ ++i d->name);
if (d->description)
printf(“ (%s)\n“ d->description);
else
printf(“ (No description available)\n“);
}

if (i == 0)
{
printf(“\nNo interfaces found! Make sure WinPcap is installed.\n“);
return -1;
}

printf(“Enter the interface number (1-%d):“ i);
scanf(“%d“ &inum);

if (inum < 1 || inum > i)
{
printf(“\nInterface number out of range.\n“);
/* 释放设备列表 */
pcap_freealldevs(alldevs);
return -1;
}

/* 跳转到已选设备 */
for (d = alldevs i = 0; i< inum - 1; d = d->next i++);

/* 打开适配器 */
if ((adhandle = pcap_open(d->name  // 设备名
65536     // 要捕捉的数据包的部分 
   // 65535保证能捕获到不同数据链路层上的每个数据包的全部内容
PCAP_OPENFLAG_NOCAPTURE_LOCAL         // 混杂模式
1000      // 读取超时时间
NULL      // 远程机器验证
errbuf     // 错误缓冲池
)) == NULL)
{
fprintf(stderr “\nUnable to open the adapter. %s is not supported by WinPcap\n“);
/* 释放设备列表 */
pcap_freealldevs(alldevs);
return -1;
}

/* 检查数据链路层,为了简单,我们只考虑以太网 */
if (pcap_datalink(adhandle) != DLT_EN10MB)
{
fprintf(stderr “\nThis program works only on Ethernet networks.\n“);
/* 释放设备列表 */
pcap_freealldevs(alldevs);
return -1;
}

if (d->

评论

共有 条评论