📄 capture.h
字号:
/* This file is part of AirSnort. AirSnort is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. AirSnort is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with AirSnort; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/#ifndef __CAPTURE_H#define __CAPTURE_H#include <stdint.h>#include <pcap.h>#include "Packet.h"//data that is the same for all types of packetstypedef struct PacketInfo_t { int channel; //receive channel for the packet char *name; //ssid name if present const unsigned char *raw; //pointer to the start of the raw packet data int wep; //was this packet encrypted? Packet *pack; //bundled packet data for 'interesting' packets} PacketInfo;//data that varies based on what type of packet it istypedef struct CaptureRec_t { PacketInfo *pInfo; //pointer to common data const unsigned char *bssid; //pointer to the AP bssid const unsigned char *sta; //pointer to the sta const unsigned char *iv; //pointer to the frame body} CaptureRec;typedef struct CaptureArg_t { pcap_t *pcap; pcap_dumper_t *dump; int offset;} CaptureArg;#define PRISM 0#define ORINOCO 1#define OTHER 2#define P80211_IOCTL_MAGIC (0x4a2d464dUL)#define WLAN_DEVNAMELEN_MAX 16extern int useOrinoco;extern char dev[WLAN_DEVNAMELEN_MAX];extern char errbuf[PCAP_ERRBUF_SIZE];void *capture(void *arg);int setChannel( unsigned char channel );void loadOpts(void);void saveOpts(void);#define P80211ENUM_truth_false 0#define P80211ENUM_truth_true 1#define P80211ENUM_msgitem_status_no_value 1/*===============================================================*//* Types *//*----------------------------------------------------------------*//* A ptr to the following structure type is passed as the third *//* argument to the ioctl system call when issuing a request to *//* the p80211 module. */typedef struct p80211ioctl_req{ char name[WLAN_DEVNAMELEN_MAX]; void *data; unsigned int magic; unsigned short len; unsigned int result;} p80211ioctl_req_t;typedef struct p80211msg{ unsigned int msgcode; unsigned int msglen; unsigned char devname[WLAN_DEVNAMELEN_MAX];} p80211msg_t;/* message data item for INT, BOUNDEDINT, ENUMINT */typedef struct p80211item_uint32{ uint32_t did; uint16_t status; uint16_t len; uint32_t data;} p80211item_uint32_t;//THESE constants reflect the wlan-ng 0.1.13 values#define DIDmsg_lnxreq_wlansniff 0x0083#define DIDmsg_lnxreq_wlansniff_enable 0x1083#define DIDmsg_lnxreq_wlansniff_channel 0x2083#define DIDmsg_lnxreq_wlansniff_prismheader 0x3083#define DIDmsg_lnxreq_wlansniff_keepwepflags 0x4083#define DIDmsg_lnxreq_wlansniff_resultcode 0x5083typedef struct p80211msg_lnxreq_wlansniff{ uint32_t msgcode __attribute__ ((packed)); uint32_t msglen __attribute__ ((packed)); uint8_t devname[WLAN_DEVNAMELEN_MAX] __attribute__ ((packed)); p80211item_uint32_t enable __attribute__ ((packed)); p80211item_uint32_t channel __attribute__ ((packed)); p80211item_uint32_t prismheader __attribute__ ((packed)); p80211item_uint32_t keepwepflags __attribute__ ((packed)); p80211item_uint32_t resultcode __attribute__ ((packed));} __attribute__ ((packed)) p80211msg_lnxreq_wlansniff_t;#define DIDmsg_lnxind_wlansniffrm 0x0041#define DIDmsg_lnxind_wlansniffrm_hosttime 0x1041#define DIDmsg_lnxind_wlansniffrm_mactime 0x2041#define DIDmsg_lnxind_wlansniffrm_channel 0x3041#define DIDmsg_lnxind_wlansniffrm_rssi 0x4041#define DIDmsg_lnxind_wlansniffrm_sq 0x5041#define DIDmsg_lnxind_wlansniffrm_signal 0x6041#define DIDmsg_lnxind_wlansniffrm_noise 0x7041#define DIDmsg_lnxind_wlansniffrm_rate 0x8041#define DIDmsg_lnxind_wlansniffrm_istx 0x9041#define DIDmsg_lnxind_wlansniffrm_frmlen 0xA041typedef struct p80211msg_lnxind_wlansniffrm{ uint32_t msgcode; uint32_t msglen; uint8_t devname[WLAN_DEVNAMELEN_MAX]; p80211item_uint32_t hosttime; p80211item_uint32_t mactime; p80211item_uint32_t channel; p80211item_uint32_t rssi; p80211item_uint32_t sq; p80211item_uint32_t signal; p80211item_uint32_t noise; p80211item_uint32_t rate; p80211item_uint32_t istx; p80211item_uint32_t frmlen;} p80211msg_lnxind_wlansniffrm_t;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -