Tagged Questions

4
votes
2answers
1k views

Python-Scapy or the like-How can I create an HTTP GET request at the packet level

I am a moderate programmer, just getting into network programming. As an attempt to improve my understanding of networks in general, I am trying to perform several basic HTTP actions from the packet ...
4
votes
4answers
2k views

Python - Library Problems

I'm relatively new to Python and am having problems programming with Scapy, the Python network manipulation tool. However, I can't tell if it's as much a Scapy problem as it is a being-a-Python-newbie ...
2
votes
2answers
255 views

Stripping payload from a tcpdump?

Is there an automated way (either in tcpdump or via a helper app Out There) to generate a pcap file that contains only Ethernet, IP and Layer 4 (TCP in my case) headers, so that there is no ...
1
vote
1answer
53 views

Unwanted RST TCP packet with Scapy

In order to understand how TCP works, I tried to forge my own TCP SYN/SYN-ACK/ACK (based on the tutorial: http://www.thice.nl/creating-ack-get-packets-with-scapy/ ). The problem is that whenever my ...
1
vote
1answer
238 views

Python Scapy wrpcap - How do you append packets to a pcap file?

I have some software that can emulate things like BER and delays on the network. I need a way to test the BER module of the software to make sure it actually works correctly. My solution is to ...
0
votes
2answers
126 views

How to extract Ethernet level data from pcap file?

I have some pcap files, previously I used tshark combined python to extract source IP address, timestamp, ect. However, now I open these pcap files in Wireshark. It also contains the VLAN info, VID ...
0
votes
1answer
189 views

Comparing TCP checksums with Scapy?

I am trying to identify packets with incorrect checksums while using Scapy as a sniffer. I am able to get the original checksum by accessing packet[TCP].chksum I then remove this using del ...