Sponsored By:

www.coresecurity.com


www.tenablesecurity.com


www.sans.org




PaulDotCom Security Weekly - Episode 53 - November 30, 2006

| | Comments (2)
Live from the PaulDotCom Security Weekly Studio....

Update: Oops, my bad. First time with the new blogging client which has comments set to off by default. They should be on, and we will accept the Syngress answers from the other blog entries, just this once. Also, I made an error with the RSS feed for about 3 minutes last night, and episode 52 was linked to the entry instead of episode 53. - Larry

  • Sponsored by The SANS Institute, get schooled at Bootcamp 2007 in Orlando, FL January 13-19! Now drop and give me 20 exploits!
  • Sponsored by Core Security, listen for the discount code at the end of the show
  • Sponsored by Syngress, be the first to post the answer to the question at the end of the show and win a free book!
  • Sponsored by Astaro, Astaro Security Gateway line of network security appliances. Listen to the show for a special offer!
  • Please go update our frapper map!
  • Want some cool PaulDotCom Gear? Do you hack naked? Check out our Cafepress Store!
  • Full Show Notes
Hosts: Larry "Uncle Larry" Pesce, Paul "PaulDotCom" Asadoorian, Nick "Twitchy" Depetrillo, Joe "Mr. C" Conlin
Email: psw@pauldotcom.com

Direct Audio Download

(Bandwidth provided by OSHEAN)

Audio Feeds:

2 Comments

Cross-post:

--max-rtt-timeout 1250 --initial-rtt-timeout 500 --max-retries 6

I think there is a typo in the documentation, where it says "sets the maximum TCP scan delay to 10 milliseconds", it should be "sets the minimum TCP scan delay to 10 milliseconds"

In case that's true, add --scan_delay 10 to the above.

from: http://insecure.org/nmap/man/man-performance.html

Cross-post:

The equivalent command for "nmap -t4" is "nmap --max-rtt-timeout 1250 --initial-rtt-timeout 500 --max-retries 6".

Internally, the following variables are set:

o.timing_level = 4;
o.setMinRttTimeout(100);
o.setMaxRttTimeout(1250);
o.setInitialRttTimeout(500);
o.setMaxTCPScanDelay(10);
o.setMaxRetransmissions(6);

For more information have a look at source code at nmap.cc