I've tried using Scapy's sniff function to sniff some packets and compared it to Wiresharks output. Upon displaying Scapy's sniffed packets and Wireshark's sniffed packets on the same interface, I discover that Wireshark can sniff some packets that Scapy was apparently not able to sniff and display. Is there a reason why and if so how can I prevent it so Scapy does not 'drop' any packets and sniffs all the packets Wireshark can receive?
Scapy cannot sniff some packets
840 Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in WIRESHARK
- Bulletproof HTTP Monitor for iOS
- Bytes Accessor in Wireshark in c
- HttpWebRequest timing out, but no packets leaving client
- wireshark - install stable and development builds in OS X
- Why Kryonet sending Object take too much network space?
- Find the SYN and ACK flags from the TCP Packets By TCPDUMP
- Wireshark Capture Filter - IPv4 and IPv6
- Receive UDP broadcast packets across subnetworks the way wireshark can do it
- Wireshark / Fiddler not displaying traffic through C# Webclient when using proxy
- Unable to get accurate results from Browserlocation API with curl
- Bridging ethernet traffic between two interfaces (USB-CDC ECM and Ethernet) using an mbed LPC1768
- How the pcap_next_ex() method is filling the pcp_pkthdr structure passing as input at driver level?
- Wireshark dissector that works with tls/ssl
- Decrypt SSL no client certificate in Wireshark Tutorial
- Unrelated packets in TCP communication capturing results
Related Questions in SCAPY
- Using scapy with wifi
- Python doesn't print with import scapy
- SCAPY PYTHON - Get 802.11 DS Status
- Python pyreadline cmd/PyCharm
- Python Scapy gnuplot issue
- Python Scapy vs dpkt
- Strange Payload when generating raw packet with Scappy
- Python Scapy - Loading HTTP from a file
- Scapy: Adding more fields to fields_desc
- Python - Scapy - Sniffing local network
- Why I'm not seeing wireless data requests
- Malformed DNS packet scapy
- Arp Scanner built on Scapy doesn't return all clients
- Tap interface is not receiving packets
- Scapy dns request behind router
Related Questions in PACKETS
- Java sending handshake packets to minecraft server
- Using scapy with wifi
- Check if User is Authenticated in OpenFire
- Scapy: Adding more fields to fields_desc
- Android(XMPP)cant get Presence packets but can get Message packets without using default Roster
- How to format TCP header values and push to a byte array for packet test in Java
- Batch listen for ping to shutdown
- Why can't I send packets with scapy? (python 2.7)
- Python - Twisted - Simple UDP forwarder. Preserve source IP?
- Sending UDP packet from Android to Arduino
- jNetPcap Packet discard if coming from specific IP address
- Is it possible to count number of ICMP packets sent/received per interface in Linux?
- Sockets - Packet Sending Exception
- I want to create a input filter and buffer allowing only a particular type of data packets on a port
- Scapy cannot sniff some packets
Related Questions in SNIFFING
- Scapy sniff() function not working for no apparent reason
- How to sniff internet connection from mobile application?
- HTTP.sys for HTTPS sniffing?
- Scapy cannot sniff some packets
- pcap_loop and pcap_dispatch Difference
- Decode HTTP packet content in python as seen in wireshark
- Can't compile simple program with tcp.h because of error from endianess?
- Sniff all network interfaces
- C# Sniff Packets from another computer on the same Network
- Using a sniffed packet with scapy python
- C# db connection security
- python scapy "unknown pypcap network interface '\\Device\\NPF_Loopback'"
- How can I sniff ethernet iOS traffic
- Network sniffing with python
- SerialPort Sniffing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Scapy itself has many libraries and extensions which are either pre-installed or you will have to install it based on your needs. Your question is a bit vague about what exactly is your comparison factor here between the two, but for example, Scapy will need a HTTPS decoder library installed for decoding the information of those packets. Also in Scapy, you can write your own protocol as you deem. But again if you are doing real-time parsing without a PCAP file Scapy is a good option even with the packet drop ratio. But if you are not concerned about the PCAP file I suggest to use Wireshark/TCPdump and record a PCAP file. You can dissect the PCAP file using Scapy then. Hope this helps.