Tagged Questions

3
votes
1answer
55 views

How to test server behavior under network loss at every possible packet

I'm working with mobile, so I expect network loss to be common. I'm doing payments, so each request matters. I would like to be able to test my server to see precisely how it will behave with client ...
1
vote
2answers
176 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
0answers
382 views

writing a TCP connection hijacking

i wrote a script to hijack a TCP connection, using python's scapy. when testing the attack on a connection between a couple of VMs (server - xp_sp3, client - xp_sp1) i found the client port, then the ...
1
vote
3answers
466 views

TCP Null Scan using Scapy

Can someone guide me on how to send packets in Scapy to an ip address, with all flags in the TCP header set to null ? I have so far tried sending packets without specifying which flags to set, but it ...
0
votes
0answers
11 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 ...
0
votes
5answers
706 views

python-scapy: how to translate port numbers to service names?

A TCP layer in Scapy contains source port: >>> a[TCP].sport 80 Is there a simple way to convert port number to service name? I've seen Scapy has TCP_SERVICES and UDP_SERVICES to translate ...