libpcap
Android NDK: Compiling errors using libpcap for Android - functions "not declared in this scope"
I\'m trying to port Jnetpcap (a java wrapper for libpcap with JNI) to Android. I\'ve managed to compile libpcap as a static library using the source code in this repository: https://github.com/android[详细]
2023-02-21 02:49 分类:问答URL Sniffing in Python
Does anyone know how to write a live data sniffer in Python which extracts the originating IP address and the full URL that was bein开发者_如何学运维g accessed? I have looked at pulling data from urls[详细]
2023-02-20 00:38 分类:问答How to write PCAP capture file header?
Without using libpcap I am trying to write a log file that adheres to the pcap file format (format). This file needs to be readable by WireShark. So far I\'ve written this in C++:[详细]
2023-02-15 19:24 分类:问答Does pcap_t *pcap_open_offline(const char *fname, char *errbuf) from libpcap read the whole pcap file into memory?
Does pcap_t *pcap_open_offline(const char *fname, char *errbuf) from libpcap read the who开发者_开发百科le pcap file into memory? If not so, I have to use tcpslice or similar tools to split pcap[详细]
2023-02-14 22:07 分类:问答libpcap on OSX - trying to use statistical mode
I\'m trying to compile a C program that uses libpcap in statistical mode on OSX. The original code was written for Windows, using the winpcap library. The version of libpcap on my Mac has never heard[详细]
2023-02-12 08:29 分类:问答How do I reassemble HTTP packets from Net::Pcap?
I am using the Net::Pcap module to capture packets with this filter: dst $my_host and dst port 80 Inside the Net::Pcap event loop I use a callback function:[详细]
2023-02-05 11:55 分类:问答Measuring upload/download rates with libpcap
I\'m using libpcap (and winpcap on Windows) in a C application to monitor network traffic. I need to differentiate between upload and download traffic on each network adapter, to produce connection sp[详细]
2023-02-04 22:32 分类:问答Do the functions in libpcap and winpcap have identical names?
Do the 开发者_如何学JAVAfunctions in libpcap and winpcap have identical names? If not, what names are different, or are the majority of them different?[详细]
2023-02-03 08:21 分类:问答Threading and pcap issues
I have a GUI program that allows a user a scan a network, the issue is that when the pcap_loop function is called, my GUI program becomes unresponsive.(the pcap_loop blocks the current thread).[详细]
2023-02-02 13:37 分类:问答libpcap get MAC from AF_LINK sockaddr_dl (OSX)
I am trying to obtain the MAC addresses of all of my interface on OSX using C.The common ways to obtain it Linux dont work on BSD - from everything I have seen, you must obtain the interfaces and look[详细]
2023-02-01 17:24 分类:问答