I'm using sslscan to scan a https-site for supported SSL/TLS-versions. If I scan the site via IPv4 I noticed strange pauses between the scans of the different cipher suits. I then scaned the host via IPv6 and no pauses. I then run tcpdump and discovered some strange RST, TCP Retransmission and TCP DUP ACK?!?. Have a look at the capture file, especialy starting at line number 63. Any idea what can cause this and maybe how to fix the application/my system to faster scan the site? Thanks a lot! asked 16 Feb '14, 07:47 0xAFFE |
One Answer:
Please use the following filter
Then select
You will see what's going on in that conversation. As you can see, the client sends a SYN and receives an ACK instead of a SYN-ACK. As a result, the client sends a RESET. Then the client tries again, unfortunately by using the same source port. That game repeats several times, until the server finally 'recovers' and sends a SYN-ACK. There are two problems, that eventually lead to that long scan duration.
Now, what can you do to speed things up?
Regards answered 16 Feb '14, 10:15 Kurt Knochner ♦ |