[mod_secdownload] use a hopefully constant time comparison to check hash (fixes #2679)

From: Stefan Bühler <stbuehler@web.de>

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@3048 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.38
Stefan Bühler 8 years ago
parent 5c5f67a5c7
commit 39add4476f

@ -11,6 +11,7 @@ NEWS
* [mod_auth] implement and use safe_memclear, using memset_s or explicit_bzero if available (thx loganaden)
* [core] don't buffer request bodies smaller than 64k on disk
* add force_assert for many allocations and function results
* [mod_secdownload] use a hopefully constant time comparison to check hash (fixes #2679)
- 1.4.37 - 2015-08-30
* [mod_proxy] remove debug log line from error log (fixes #2659)

@ -42,6 +42,16 @@ typedef struct {
plugin_config conf;
} plugin_data;
static int const_time_memeq(const char *a, const char *b, size_t len) {
/* constant time memory compare, unless the compiler figures it out */
char diff = 0;
size_t i;
for (i = 0; i < len; ++i) {
diff |= (a[i] ^ b[i]);
}
return 0 == diff;
}
/* init the plugin data */
INIT_FUNC(mod_secdownload_init) {
plugin_data *p;
@ -264,7 +274,7 @@ URIHANDLER_FUNC(mod_secdownload_uri_handler) {
buffer_copy_string_hex(p->md5, (char *)HA1, 16);
if (0 != strncasecmp(md5_str, p->md5->ptr, 32)) {
if (!const_time_memeq(md5_str, p->md5->ptr, 32)) {
con->http_status = 403;
log_error_write(srv, __FILE__, __LINE__, "sss",

Loading…
Cancel
Save