Skip to content
Open
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
6 changes: 6 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ DirectoryIndex index.php
</FilesMatch>
</IfModule>

# Disable Proxy header, since it's an attack vector. See https://www.drupal.org/SA-CORE-2016-003
<IfModule mod_headers.c>
RequestHeader unset Proxy
</IfModule>


# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Drupal 6.38-p1, 2016-08-10 - SA-CORE-2016-003
---------------------------------------------

The provided patch will mitigate possible exploits of the HTTP_PROXY
header in Drupal 6. There are no currently known vectors of this
exploit in Drupal 6, however, we still advise blocking the HTTP_PROXY
header either with this patch for simple Apache installations (the
patch includes rules in .htaccess) or via your own configuration if
you use another webserver and/or you have disabled htaccess. You can
read more about this issue here: https://www.drupal.org/SA-CORE-2016-003
and here: https://httpoxy.org/

Almost all site administrators will want to take the infrastructure
actions suggested in httppoxy.org and a complete solution to this
vulnerability.

Drupal 6.38, 2016-02-24 - Final release
---------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/system/system.module
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '6.38');
define('VERSION', '6.38-p1');

/**
* Core API compatibility.
Expand Down