1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-01 02:59:01 +00:00

Adding my strftime()-like conversion extensions to the logging functions (-oA, -oX, etc). This contains a CHANGELOG entry and refguide changes which (hopefully) sum it up pretty well.

This commit is contained in:
kris
2007-12-13 21:22:57 +00:00
parent 0a6f10e4ba
commit 2425765f4e
5 changed files with 106 additions and 12 deletions

View File

@@ -2868,6 +2868,18 @@ compatibility feature of Nmap will cause the creation of
<filename>G-</filename> and <filename>Xscan.xml</filename>
respectively.</para>
<para>All of these arguments support <function>strftime()</function>-like
conversions in the filename. <literal>%H</literal>, <literal>%M</literal>,
<literal>%S</literal>, <literal>%T</literal>, <literal>%R</literal>,
<literal>%m</literal>, <literal>%d</literal>, <literal>%y</literal>,
and <literal>%Y</literal> are all exactly the same as in
<function>strftime()</function>. <literal>%t</literal> is the same as
<literal>%H%M%S</literal>, <literal>%r</literal> is the same as
<literal>%H%M</literal>, and <literal>%D</literal> is the same as
<literal>%m%d%y</literal>. So <option>-oX 'scan-%T-%D.xml'</option>
will use an XML file in the form of
<filename>scan-14:48:40-121307.xml</filename>.</para>
<para>Nmap also offers options to control scan verbosity and to append
to output files rather than clobbering them. All of these options are
described below.</para>