forked from ErrorVania/packetsniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
97 lines (66 loc) · 1.74 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include <iostream>
#include <cstdlib>
#include <sys/ioctl.h>
#include <string.h>
#include <unistd.h>
#include "netincl.h"
#include "pktproc.h"
using namespace std;
void err(const char* extra) {
cerr << errno << " " << strerror(errno) << " " << extra << endl;
exit(errno);
}
int main() {
const int bufsiz = 0xffff;
uint8_t* buffer = (uint8_t*)malloc(bufsiz);
if (buffer <= 0) {
err("malloc");
}
int s = socket(PF_PACKET,SOCK_RAW,htons(ETH_P_ALL));
if (s == -1) {
err("socket");
}
ifreq ifstr;
memset(&ifstr,0,sizeof(ifreq));
strncpy(ifstr.ifr_ifrn.ifrn_name,"wlan0",IFNAMSIZ-1);
if (ioctl(s,SIOCGIFINDEX,&ifstr) == -1) {
err("ioctl");
}
int ifidex = ifstr.ifr_ifru.ifru_ivalue;
cout << "iface id: " << ifidex << endl;
sockaddr_ll sll;
sll.sll_family = PF_PACKET;
sll.sll_protocol = htons(ETH_P_ALL);
sll.sll_ifindex = ifidex;
if (bind(s,(sockaddr*)&sll,sizeof(sll)) == -1) {
err("bind");
}
if (ioctl(s,SIOCGIFFLAGS,&ifstr) == -1) {
err("ioctl");
}
auto orig_flags = ifstr.ifr_ifru.ifru_flags;
ifstr.ifr_ifru.ifru_flags = orig_flags | IFF_PROMISC | IFF_UP;
if (ioctl(s,SIOCSIFFLAGS,&ifstr) == -1) {
err("ioctl");
}
int slctVal, ret;
timeval tv;
sockaddr_in sin;
uint siz = sizeof(sin);
//netcode
while (true) {
ret = recvfrom(s,buffer,bufsiz,0,(sockaddr*)&sin,&siz);
if (ret > 0) {
procpkt(buffer,ret);
}
}
//netcode end
ifreq a;
memset(&a,0,sizeof(a));
a.ifr_ifru.ifru_flags = orig_flags;
if (ioctl(s,SIOCSIFFLAGS,&ifstr) == -1) {
err("ioctl");
}
free(buffer);
close(s);
}