Skip to content

Remotes/trunk #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
01 Nov 2012 - 2.7.1
-------------------

* Changed "Encryption" name of directives and options related to hmac feature to "Hash".

SecEncryptionEngine to SecHashEngine
SecEncryptionKey to SecHashKey
SecEncryptionParam to SecHashParam
SecEncryptionMethodRx to SecHashMethodRx
SecEncryptionMethodPm to SecHashMethodPm
@validateEncryption to @validateHash
ctl:EncryptionEnforcement to ctl:HashEnforcement
ctl:EncryptionEngine to ctl:HashEngine

* Added a better random bytes generator using apr_generate_random_bytes() to create
the HMAC key.

* Fixed byte conversion issue during logging under Linux s390x platform.

* Fixed compilation bug with LibXML2 2.9.0 (Thanks Athmane Madjoudj).

* Fixed parsing error with modsecurity-recommended.conf and Apache 2.4.

* Fixed DROP action was disabled for Apache 2 module.
* Fixed DROP action was disabled for Apache 2 module by mistake.

* Updated Reference Manual.
* Fixed bug when use ctl:ruleRemoveByTag.

* The doc/ directory now contains the instructions to access online documentation.

15 Oct 2012 - 2.7.0
-------------------
Expand Down
3 changes: 1 addition & 2 deletions README.TXT
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ oject


Download:
https://sourceforge.net/projects/mod-security/files/modsecurity-crs/0-CURRE
NT/
https://github.com/SpiderLabs/owasp-modsecurity-crs

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

Expand Down
4 changes: 2 additions & 2 deletions apache2/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ mod_security2_la_LDFLAGS = -module -avoid-version \
endif

if LINUX
mod_security2_la_LDFLAGS = -no-undefined -module -avoid-version \
mod_security2_la_LDFLAGS = -no-undefined -module -avoid-version -R @PCRE_LD_PATH@ \
@APR_LDFLAGS@ @APU_LDFLAGS@ @APXS_LDFLAGS@ \
@PCRE_LDFLAGS@ @LIBXML2_LDFLAGS@ @LUA_LDFLAGS@
endif
Expand Down Expand Up @@ -71,5 +71,5 @@ install-exec-hook: $(pkglib_LTLIBRARIES)
for m in $(pkglib_LTLIBRARIES); do \
base=`echo $$m | sed 's/\..*//'`; \
rm -f $(DESTDIR)$(pkglibdir)/$$base.*a; \
cp -p $(DESTDIR)$(pkglibdir)/$$base.so $(APXS_MODULES); \
install -D -m444 $(DESTDIR)$(pkglibdir)/$$base.so $(DESTDIR)$(APXS_MODULES); \
done
Loading