Skip to content

Commit

Permalink
Final cleanup before release
Browse files Browse the repository at this point in the history
  • Loading branch information
aconole committed Feb 25, 2010
1 parent de56623 commit a4ff2d3
Show file tree
Hide file tree
Showing 4 changed files with 525 additions and 515 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
@@ -1,5 +1,5 @@
v 0.6
Added ./configure script
Added configure script for unix and DOS.
Added line terminator specifier
Added begin-at-test specifier
Added end-on-fail specifier
Expand All @@ -9,6 +9,7 @@ v 0.6
Added server-side plugin and sample browser fuzzing script
Added response subtitutions (ie: use data from the previous packet)
-offset/text based only
Fixed copius amounts of bugs (about 60 man-hours went into this effort)

v 0.5
Added rudimentary plugin support.
Expand Down
8 changes: 5 additions & 3 deletions Makefile.in
@@ -1,3 +1,5 @@
.PHONY: all install uninstall clean dist-clean distclean

sfuzz sfuzz.exe: $(SF_OBJS)
@echo "[LINK] $@"
@$(CC) -o $@ $(SF_OBJS) $(LDFLAGS) $(LIBS)
Expand All @@ -16,8 +18,8 @@ snoop snoop.exe: $(SNOOP_OBJS)

install: all
@echo "Installing to: $(PREFIX)"
@$(INSTALL) sfuzz $(BIN_DIR)sfuzz
@$(MKDIR) -p $(SHARE_DIR)sfuzz-db
@$(INSTALL) sfuzz $(BIN_DIR)
@$(MKDIR) $(SHARE_DIR)sfuzz-db
@$(CP) $(SFUZZ_SAMPLE)* $(SHARE_DIR)sfuzz-db
@$(CP) *.so $(SHARE_DIR)sfuzz-db
@echo Installed.
Expand All @@ -31,6 +33,6 @@ uninstall:
clean:
@$(RM) -f core *~ *.o snoop snoop.exe sfuzz sfuzz.exe *.so

dist-clean: clean
distclean dist-clean: clean
@$(RM) -f Makefile Makefile.old
@echo Makefile / configuration removed.
5 changes: 3 additions & 2 deletions TODO
@@ -1,4 +1,5 @@
- STRESS test this bad larry
- Remove ascii string dependancies (? - need to flush them all out)
- Fix Vista & XP SP2 snoop
- REGEX for data return
- REGEX for data return
- Fix the make system's installer under windows.
- Fix the server to be a bit more intelligent

0 comments on commit a4ff2d3

Please sign in to comment.