Changeset 1860 for zzuf/trunk/doc


Ignore:
Timestamp:
Nov 3, 2007, 12:07:41 AM (16 years ago)
Author:
Sam Hocevar
Message:
  • Updated documentation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zzuf/trunk/doc/zzuf.1

    r1803 r1860  
    77       [\fB\-f\fR \fIfuzzing\fR] [\fB\-D\fR \fIdelay\fR] [\fB\-F\fR \fIforks\fR] [\fB\-C\fR \fIcrashes\fR] [\fB\-B\fR \fIbytes\fR]
    88.br
    9        [\fB\-t\fR \fIseconds\fR] [\fB\-T\fR \fIseconds\fR] [\fB\-M\fR \fImegabytes\fR] [\fB\-b\fR \fIranges\fR]
    10 .br
    11        [\fB\-P\fR \fIprotect\fR] [\fB\-R\fR \fIrefuse\fR] [\fB\-p\fR \fIpick\fR] [\fB\-I\fR \fIinclude\fR] [\fB\-E\fR \fIexclude\fR]
     9       [\fB\-t\fR \fIseconds\fR] [\fB\-T\fR \fIseconds\fR] [\fB\-M\fR \fImegabytes\fR] [\fB\-b\fR \fIranges\fR] [\fB\-p\fR \fIports\fR]
     10.br
     11       [\fB\-P\fR \fIprotect\fR] [\fB\-R\fR \fIrefuse\fR] [\fB\-l\fR \fIlist\fR] [\fB\-I\fR \fIinclude\fR] [\fB\-E\fR \fIexclude\fR]
    1212.br
    1313       [\fIPROGRAM\fR [\fB\-\-\fR] [\fIARGS\fR]...]
     
    134134of the regular expressions will be fuzzed. See also the \fB\-c\fR flag.
    135135.TP
     136\fB\-l\fR, \fB\-\-list\fR=\fIlist\fR
     137Cherry-pick the list of file descriptors that get fuzzed. The Nth descriptor
     138will really be fuzzed only if N is in \fIlist\fR.
     139
     140Values start at one and ranges are inclusive. Use dashes between values and
     141commas between ranges. If the right-hand part of a range is ommited, it means
     142all subsequent file descriptors. For instance, to restrict fuzzing to the
     143first opened descriptor and all descriptors starting from the 10th, use
     144\(oq\fB\-p1,10-\fR\(cq.
     145
     146Note that this option only affects file descriptors that would otherwise be
     147fuzzed. Even if 10 write-only descriptors are opened at the beginning of the
     148program, only the next descriptor with a read flag will be the first one
     149considered by the \fB\-p\fR flag.
     150.TP
    136151\fB\-m\fR, \fB\-\-md5\fR
    137152Instead of displaying the program's \fIstandard output\fR, just print its MD5
     
    151166Fuzz the application's network input. By default \fBzzuf\fR only fuzzes files.
    152167.TP
    153 \fB\-p\fR, \fB\-\-pick\fR=\fIlist\fR
    154 Cherry-pick the file descriptors that get fuzzed. The Nth descriptor will
    155 really be fuzzed only if N is in \fIlist\fR.
    156 
    157 Values start at one and ranges are inclusive. Use dashes between values and
    158 commas between ranges. If the right-hand part of a range is ommited, it means
    159 all subsequent file descriptors. For instance, to restrict fuzzing to the
    160 first opened descriptor and all descriptors starting from the 10th, use
    161 \(oq\fB\-p1,10-\fR\(cq.
    162 
    163 Note that this option only affects file descriptors that would otherwise be
    164 fuzzed. Even if 10 write-only descriptors are opened at the beginning of the
    165 program, the next read-write or read-only descriptor will be the first one
    166 considered by the \fB\-p\fR flag.
     168\fB\-p\fR, \fB\-\-ports\fR=\fIranges\fR
     169Only fuzz network ports that are in \fIranges\fR. By default \fBzzuf\fR
     170fuzzes all ports. The port considered is the listening port if the socket
     171is listening and the destination port if the socket is connecting, because
     172most of the time the source port cannot be predicted.
     173
     174Range values start at zero and are inclusive. Use dashes between range values
     175and commas between ranges. If the right-hand part of a range is ommited, it
     176means end of file. For instance, to restrict fuzzing to the HTTP and HTTPS
     177ports and to all unprivileged ports, use \(oq\fB\-p80,443,1024-\fR\(cq.
     178
     179This option requires network fuzzing to be activated using \fB\-n\fR.
    167180.TP
    168181\fB\-P\fR, \fB\-\-protect\fR=\fIlist\fR
Note: See TracChangeset for help on using the changeset viewer.