Changeset 1867 for zzuf


Ignore:
Timestamp:
Nov 3, 2007, 1:24:46 AM (15 years ago)
Author:
Sam Hocevar
Message:
Location:
zzuf/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • zzuf/trunk/ChangeLog

    r1804 r1867  
     1------------------------------------------------------------------------
     2r316 | sam | 2007-11-03 01:14:40 +0100 (Sat, 03 Nov 2007) | 2 lines
     3Changed paths:
     4   M /trunk/doc/zzuf.1
     5
     6  * Documentation updates.
     7
     8------------------------------------------------------------------------
     9r315 | sam | 2007-11-03 01:08:43 +0100 (Sat, 03 Nov 2007) | 2 lines
     10Changed paths:
     11   M /trunk/src/lib-fd.c
     12
     13  * Do not fuzz non-IP network protocols. They’re too painful to fine-tune.
     14
     15------------------------------------------------------------------------
     16r314 | sam | 2007-11-03 00:34:22 +0100 (Sat, 03 Nov 2007) | 4 lines
     17Changed paths:
     18   M /trunk/src/lib-fd.c
     19
     20  * Merged the bind() and connect() diversions using macros. They were almost
     21    identical.
     22  * Check the addrlen value to avoid crashing with weird protocols.
     23
     24------------------------------------------------------------------------
     25r313 | sam | 2007-11-03 00:23:25 +0100 (Sat, 03 Nov 2007) | 2 lines
     26Changed paths:
     27   M /trunk/src/lib-fd.c
     28
     29  * Divert connect() so that -p/--ports now works with outbound connections.
     30
     31------------------------------------------------------------------------
     32r312 | sam | 2007-11-03 00:22:11 +0100 (Sat, 03 Nov 2007) | 2 lines
     33Changed paths:
     34   M /trunk/configure.ac
     35
     36  * Look for connect().
     37
     38------------------------------------------------------------------------
     39r311 | sam | 2007-11-03 00:07:41 +0100 (Sat, 03 Nov 2007) | 2 lines
     40Changed paths:
     41   M /trunk/doc/zzuf.1
     42
     43  * Updated documentation.
     44
     45------------------------------------------------------------------------
     46r310 | sam | 2007-11-03 00:01:09 +0100 (Sat, 03 Nov 2007) | 3 lines
     47Changed paths:
     48   M /trunk/src/fd.c
     49   M /trunk/src/lib-fd.c
     50
     51  * Fix a bug in the -p handling that made it opt-out instead of opt-in.
     52  * Don’t bother using AF_UNIX, it doesn’t have ports.
     53
     54------------------------------------------------------------------------
     55r309 | sam | 2007-11-02 23:45:54 +0100 (Fri, 02 Nov 2007) | 3 lines
     56Changed paths:
     57   M /trunk/src/fd.c
     58   M /trunk/src/fd.h
     59   M /trunk/src/fuzz.c
     60   M /trunk/src/fuzz.h
     61   M /trunk/src/lib-fd.c
     62   M /trunk/src/libzzuf.c
     63   M /trunk/src/opts.c
     64   M /trunk/src/opts.h
     65   M /trunk/src/zzuf.c
     66
     67  * Network destination port choosing with -p/--ports.
     68  * Renamed -p/--pick into -l/--list to avoid conflicts.
     69
     70------------------------------------------------------------------------
     71r308 | sam | 2007-11-02 22:50:08 +0100 (Fri, 02 Nov 2007) | 2 lines
     72Changed paths:
     73   M /trunk/configure.ac
     74
     75  * Check for <netinet/in.h>, it’s needed for struct sockaddr_in.
     76
     77------------------------------------------------------------------------
     78r307 | sam | 2007-11-02 22:40:38 +0100 (Fri, 02 Nov 2007) | 2 lines
     79Changed paths:
     80   M /trunk/src/debug.c
     81
     82  * Support %d, %ld and %lld in addition to %i etc. in debug().
     83
     84------------------------------------------------------------------------
     85r306 | sam | 2007-11-02 22:32:18 +0100 (Fri, 02 Nov 2007) | 2 lines
     86Changed paths:
     87   M /trunk/src/lib-fd.c
     88
     89  * Log and divert bind() calls.
     90
     91------------------------------------------------------------------------
     92r305 | sam | 2007-11-02 22:16:57 +0100 (Fri, 02 Nov 2007) | 2 lines
     93Changed paths:
     94   M /trunk/configure.ac
     95
     96  * Check for bind in the configure step.
     97
     98------------------------------------------------------------------------
     99r304 | sam | 2007-07-10 17:55:35 +0200 (Tue, 10 Jul 2007) | 3 lines
     100Changed paths:
     101   M /trunk/ChangeLog
     102   M /trunk/NEWS
     103
     104  * Version 0.9. For real, this time.
     105  * Updated NEWS and ChangeLog.
     106
    1107------------------------------------------------------------------------
    2108r303 | sam | 2007-07-10 17:42:37 +0200 (Tue, 10 Jul 2007) | 2 lines
  • zzuf/trunk/NEWS

    r1804 r1867  
    11$Id$
     2
     3Changes from 0.9 to 0.10
     4
     5 * network port selection for targeted fuzzing
    26
    37Changes from 0.8.1 to 0.9
  • zzuf/trunk/configure.ac

    r1861 r1867  
    11# $Id: configure.ac 98 2006-09-22 16:27:37Z sam $
    22
    3 AC_INIT(zzuf, 0.9)
     3AC_INIT(zzuf, 0.10)
    44
    55AC_PREREQ(2.50)
     
    88AC_CANONICAL_SYSTEM
    99
    10 AM_INIT_AUTOMAKE(zzuf, 0.9)
     10AM_INIT_AUTOMAKE(zzuf, 0.10)
    1111AM_CONFIG_HEADER(config.h)
    1212
Note: See TracChangeset for help on using the changeset viewer.