# HG changeset patch # User Igor Sysoev # Date 1276545600 -14400 # Node ID 31b936646211e3759bfbee435e0aff767791b032 # Parent b875e7d99b59bf6ddaabdcbd677081838dfe48f8 nginx 0.7.67 *) Security: nginx/Windows worker might be terminated abnormally if a requested file name has invalid UTF-8 encoding. diff --git a/CHANGES b/CHANGES --- 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 --- 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 --- 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 --- 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);