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
| #include <iostream> #include <pcap.h> #include <netinet/ip.h> #include <netinet/tcp.h> #include <cstring> using namespace std; #include <iostream> #include <pcap.h> #include <netinet/ip.h> #include <netinet/tcp.h> #include <cstring> using namespace std;
pcap_t* handle;
void packetHandler(u_char* userData, const struct pcap_pkthdr* pkthdr, const u_char* packet) { const struct ip* ipHeader = reinterpret_cast<const struct ip*>(packet + 14);
const struct tcphdr* tcpHeader = reinterpret_cast<const struct tcphdr*>(packet + 14 + ipHeader->ip_hl * 4);
if (ntohs(tcpHeader->th_dport) == 80) { const u_char* payload = packet + 14 + ipHeader->ip_hl * 4 + tcpHeader->th_off * 4;
if (memcmp(payload, "GET ", 4) == 0) { } } }
int main() { char errbuf[PCAP_ERRBUF_SIZE];
pcap_if_t* devices; pcap_if_t* device;
if (pcap_findalldevs(&devices, errbuf) == -1) { fprintf(stderr, "Error finding devices: %s\n", errbuf); return 1; }
if (devices == NULL) { fprintf(stderr, "No devices found.\n"); return 1; }
device = devices; cout <<(device->name) <<endl; handle = pcap_open_live(device->name, BUFSIZ, 1, 1000, errbuf); if (handle == NULL) { fprintf(stderr, "Error opening device %s: %s\n", device->name, errbuf); return 1; }
if (pcap_loop(handle, -1, packetHandler, NULL) == -1) { fprintf(stderr, "Error capturing packets: %s\n", pcap_geterr(handle)); return 1; }
pcap_close(handle);
return 0; }
|