Skip to content
This repository has been archived by the owner on Jun 24, 2020. It is now read-only.

Commit

Permalink
* Reverted trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
richterr committed Sep 4, 2010
1 parent 899b04a commit 844d113
Show file tree
Hide file tree
Showing 58 changed files with 526 additions and 1,334 deletions.
10 changes: 2 additions & 8 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,13 @@
Hyenae
Advanced Network Packet Generator

Copyright (C) 2009 - 2010 Robin Richter
Copyright (C) 2009 Robin Richter

Contact : [email protected]
Homepage : http://sourceforge.net/projects/hyenae/

--------------------------------------------------------------------------------

Version 0.35-2 (?)
* Updated documentation
* Migrated to getopt_long
* Extended command line usage infos
* Applied memory leak patch by Archie Andrews

Version 0.35-1 (Oct. 1st, 2009)
* Bug fixes
* Fixed build warnings
Expand All @@ -31,7 +25,7 @@
* Refactored default value assignment
* Made opcode (code) argument optional
* Refactored attack parameter structure
* Applied DNS patch by Archie Andrews
* Applied DNS patch from Archie Andrews
* Removed DNS query URL format validation
* Added Cisco HSRP active router hijacking to attack assistant
* Daemon now binds to every capable network interface by default
Expand Down
2 changes: 1 addition & 1 deletion HOWTO
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Hyenae
Advanced Network Packet Generator

Copyright (C) 2009 - 2010 Robin Richter
Copyright (C) 2009 Robin Richter

Contact : [email protected]
Homepage : http://sourceforge.net/projects/hyenae/
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Hyenae
Advanced Network Packet Generator

Copyright (C) 2009 - 2010 Robin Richter
Copyright (C) 2009 Robin Richter

Contact : [email protected]
Homepage : http://sourceforge.net/projects/hyenae/
Expand Down
25 changes: 15 additions & 10 deletions Makefile.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Makefile.in generated by automake 1.10 from Makefile.am.
# Makefile.in generated by automake 1.10.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
Expand Down Expand Up @@ -348,8 +348,8 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
$(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS

Expand All @@ -374,8 +374,8 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
Expand All @@ -385,13 +385,12 @@ ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$tags $$unique
Expand Down Expand Up @@ -462,6 +461,10 @@ dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
$(am__remove_distdir)

dist-lzma: distdir
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
$(am__remove_distdir)

dist-tarZ: distdir
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__remove_distdir)
Expand All @@ -488,6 +491,8 @@ distcheck: dist
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lzma*) \
unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
Expand Down Expand Up @@ -641,7 +646,7 @@ uninstall-am: uninstall-dist_docDATA
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am am--refresh check check-am clean clean-generic \
ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
dist-shar dist-tarZ dist-zip distcheck distclean \
dist-lzma dist-shar dist-tarZ dist-zip distcheck distclean \
distclean-generic distclean-hdr distclean-tags distcleancheck \
distdir distuninstallcheck dvi dvi-am html html-am info \
info-am install install-am install-data install-data-am \
Expand Down
Loading

0 comments on commit 844d113

Please sign in to comment.