summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-15 09:55:07 +0000
committerJonathan Kolb <jon@b0g.us>2010-06-15 09:55:07 +0000
commit9e3259c98505c74f2348b5ddfbd3bd7b2c234714 (patch)
tree9ba89c7d3ca62766ed24d3bcb98e057b9ff78641
parenta5d3b2e71a185ce5507e2caf596e919f453c88a7 (diff)
downloadnginx-9e3259c98505c74f2348b5ddfbd3bd7b2c234714.tar.gz
Changes with nginx 0.7.67 15 Jun 2010v0.7.67
*) Security: nginx/Windows worker might be terminated abnormally if a requested file name has invalid UTF-8 encoding.
-rw-r--r--CHANGES6
-rw-r--r--CHANGES.ru6
-rw-r--r--src/core/nginx.h4
-rw-r--r--src/http/modules/perl/nginx.pm2
4 files changed, 15 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 6c5bb387f..927890149 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,10 @@
+Changes with nginx 0.7.67 15 Jun 2010
+
+ *) Security: nginx/Windows worker might be terminated abnormally if a
+ requested file name has invalid UTF-8 encoding.
+
+
Changes with nginx 0.7.66 07 Jun 2010
*) Security: now nginx/Windows ignores default file stream name.
diff --git a/CHANGES.ru b/CHANGES.ru
index 3845c0157..e9fcc4cd7 100644
--- a/CHANGES.ru
+++ b/CHANGES.ru
@@ -1,4 +1,10 @@
+Изменения в nginx 0.7.67 15.06.2010
+
+ *) Безопасность: рабочий процесс nginx/Windows мог завершаться аварийно
+ при запросе файла с неверной кодировкой UTF-8.
+
+
Изменения в nginx 0.7.66 07.06.2010
*) Безопасность: теперь nginx/Windows игнорирует имя потока файла по
diff --git a/src/core/nginx.h b/src/core/nginx.h
index 86c943465..8a49f6857 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,8 +8,8 @@
#define _NGINX_H_INCLUDED_
-#define nginx_version 7066
-#define NGINX_VERSION "0.7.66"
+#define nginx_version 7067
+#define NGINX_VERSION "0.7.67"
#define NGINX_VER "nginx/" NGINX_VERSION
#define NGINX_VAR "NGINX"
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm
index 91eeadde1..8cd47f98f 100644
--- a/src/http/modules/perl/nginx.pm
+++ b/src/http/modules/perl/nginx.pm
@@ -47,7 +47,7 @@ our @EXPORT = qw(
HTTP_INSUFFICIENT_STORAGE
);
-our $VERSION = '0.7.66';
+our $VERSION = '0.7.67';
require XSLoader;
XSLoader::load('nginx', $VERSION);