From 62955f75e6d6f2fd504c197414bf5ae0484db255 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 13 Apr 2010 23:51:41 +0000 Subject: [PATCH] Add to CHANGELOG: o [NSE] Scripts that take an argument for a time duration can now have the duration be a number followed by a unit, like other times in Nmap. For example, 10m for 10 minutes. The units understood are ms for milliseconds, s for seconds, m for minutes, and h for hours. Seconds are the default if no unit is specified. The new function stdnse.parse_timespec does the parsing of these formats. The qscan.delay script argument, which formerly interpreted its argument as being in milliseconds, now defaults to seconds; append "ms" to continue using the same numbers. [David] --- CHANGELOG | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index b6f2d9054..bbae555c7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,15 @@ # Nmap Changelog ($Id$); -*-text-*- +o [NSE] Scripts that take an argument for a time duration can now have + the duration be a number followed by a unit, like other times in + Nmap. For example, 10m for 10 minutes. The units understood are ms + for milliseconds, s for seconds, m for minutes, and h for hours. + Seconds are the default if no unit is specified. The new function + stdnse.parse_timespec does the parsing of these formats. The + qscan.delay script argument, which formerly interpreted its argument + as being in milliseconds, now defaults to seconds; append "ms" to + continue using the same numbers. [David] + o [NSE] Added script arguments "username" and "password" to ftp-bounce to override the default anonymous:IEUser@ login combination. [Kris]