* Version 0.10.

* Updated NEWS and ChangeLog.
This commit is contained in:
Sam Hocevar 2007-11-03 00:24:46 +00:00 committed by sam
parent 17b551bb2e
commit b86478a95e
3 changed files with 112 additions and 2 deletions

106
ChangeLog
View File

@ -1,3 +1,109 @@
------------------------------------------------------------------------
r316 | sam | 2007-11-03 01:14:40 +0100 (Sat, 03 Nov 2007) | 2 lines
Changed paths:
M /trunk/doc/zzuf.1
* Documentation updates.
------------------------------------------------------------------------
r315 | sam | 2007-11-03 01:08:43 +0100 (Sat, 03 Nov 2007) | 2 lines
Changed paths:
M /trunk/src/lib-fd.c
* Do not fuzz non-IP network protocols. Theyre too painful to fine-tune.
------------------------------------------------------------------------
r314 | sam | 2007-11-03 00:34:22 +0100 (Sat, 03 Nov 2007) | 4 lines
Changed paths:
M /trunk/src/lib-fd.c
* Merged the bind() and connect() diversions using macros. They were almost
identical.
* Check the addrlen value to avoid crashing with weird protocols.
------------------------------------------------------------------------
r313 | sam | 2007-11-03 00:23:25 +0100 (Sat, 03 Nov 2007) | 2 lines
Changed paths:
M /trunk/src/lib-fd.c
* Divert connect() so that -p/--ports now works with outbound connections.
------------------------------------------------------------------------
r312 | sam | 2007-11-03 00:22:11 +0100 (Sat, 03 Nov 2007) | 2 lines
Changed paths:
M /trunk/configure.ac
* Look for connect().
------------------------------------------------------------------------
r311 | sam | 2007-11-03 00:07:41 +0100 (Sat, 03 Nov 2007) | 2 lines
Changed paths:
M /trunk/doc/zzuf.1
* Updated documentation.
------------------------------------------------------------------------
r310 | sam | 2007-11-03 00:01:09 +0100 (Sat, 03 Nov 2007) | 3 lines
Changed paths:
M /trunk/src/fd.c
M /trunk/src/lib-fd.c
* Fix a bug in the -p handling that made it opt-out instead of opt-in.
* Dont bother using AF_UNIX, it doesnt have ports.
------------------------------------------------------------------------
r309 | sam | 2007-11-02 23:45:54 +0100 (Fri, 02 Nov 2007) | 3 lines
Changed paths:
M /trunk/src/fd.c
M /trunk/src/fd.h
M /trunk/src/fuzz.c
M /trunk/src/fuzz.h
M /trunk/src/lib-fd.c
M /trunk/src/libzzuf.c
M /trunk/src/opts.c
M /trunk/src/opts.h
M /trunk/src/zzuf.c
* Network destination port choosing with -p/--ports.
* Renamed -p/--pick into -l/--list to avoid conflicts.
------------------------------------------------------------------------
r308 | sam | 2007-11-02 22:50:08 +0100 (Fri, 02 Nov 2007) | 2 lines
Changed paths:
M /trunk/configure.ac
* Check for <netinet/in.h>, its needed for struct sockaddr_in.
------------------------------------------------------------------------
r307 | sam | 2007-11-02 22:40:38 +0100 (Fri, 02 Nov 2007) | 2 lines
Changed paths:
M /trunk/src/debug.c
* Support %d, %ld and %lld in addition to %i etc. in debug().
------------------------------------------------------------------------
r306 | sam | 2007-11-02 22:32:18 +0100 (Fri, 02 Nov 2007) | 2 lines
Changed paths:
M /trunk/src/lib-fd.c
* Log and divert bind() calls.
------------------------------------------------------------------------
r305 | sam | 2007-11-02 22:16:57 +0100 (Fri, 02 Nov 2007) | 2 lines
Changed paths:
M /trunk/configure.ac
* Check for bind in the configure step.
------------------------------------------------------------------------
r304 | sam | 2007-07-10 17:55:35 +0200 (Tue, 10 Jul 2007) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
* Version 0.9. For real, this time.
* Updated NEWS and ChangeLog.
------------------------------------------------------------------------
r303 | sam | 2007-07-10 17:42:37 +0200 (Tue, 10 Jul 2007) | 2 lines
Changed paths:

4
NEWS
View File

@ -1,5 +1,9 @@
$Id$
Changes from 0.9 to 0.10
* network port selection for targeted fuzzing
Changes from 0.8.1 to 0.9
* support for cherry-picking fuzzed descriptors

View File

@ -1,13 +1,13 @@
# $Id: configure.ac 98 2006-09-22 16:27:37Z sam $
AC_INIT(zzuf, 0.9)
AC_INIT(zzuf, 0.10)
AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(src/zzuf.c)
AC_CONFIG_AUX_DIR(autotools)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(zzuf, 0.9)
AM_INIT_AUTOMAKE(zzuf, 0.10)
AM_CONFIG_HEADER(config.h)
AM_PROG_CC_C_O