summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog3
-rw-r--r--ifilter.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index b6d2798..24208c6 100644
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,7 @@
12010-xx-xx - 0.9.30-dev 12010-xx-xx - 0.9.30-dev
2 2
3 - ... 3 - Added line ending characters %0a and %0d to the list of dangerous characters handled
4 by suhosin.server.encode and suhosin.server.strip
4 5
52009-08-15 - 0.9.29 62009-08-15 - 0.9.29
6 7
diff --git a/ifilter.c b/ifilter.c
index 38f97a5..d635ba3 100644
--- a/ifilter.c
+++ b/ifilter.c
@@ -118,7 +118,7 @@ void normalize_varname(char *varname)
118static unsigned char suhosin_hexchars[] = "0123456789ABCDEF"; 118static unsigned char suhosin_hexchars[] = "0123456789ABCDEF";
119 119
120static const char suhosin_is_dangerous_char[256] = { 120static const char suhosin_is_dangerous_char[256] = {
121 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0,
122 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
123 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 123 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,
124 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 124 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,