mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 12:43:42 +08:00
SECURITY: enforce hostname to match discourse hostname
This ensures that the hostname rails uses for various helpers always matches the Discourse hostname # Conflicts: # config/application.rb # spec/requests/application_controller_spec.rb
This commit is contained in:
parent
05b2c5babf
commit
6b9b73236a
|
@ -186,6 +186,8 @@ module Discourse
|
||||||
# supports etags (post 1.7)
|
# supports etags (post 1.7)
|
||||||
config.middleware.delete Rack::ETag
|
config.middleware.delete Rack::ETag
|
||||||
|
|
||||||
|
require 'middleware/enforce_hostname'
|
||||||
|
config.middleware.insert_after Rack::MethodOverride, Middleware::EnforceHostname
|
||||||
require 'middleware/discourse_public_exceptions'
|
require 'middleware/discourse_public_exceptions'
|
||||||
config.exceptions_app = Middleware::DiscoursePublicExceptions.new(Rails.public_path)
|
config.exceptions_app = Middleware::DiscoursePublicExceptions.new(Rails.public_path)
|
||||||
|
|
||||||
|
|
20
lib/middleware/enforce_hostname.rb
Normal file
20
lib/middleware/enforce_hostname.rb
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module Middleware
|
||||||
|
class EnforceHostname
|
||||||
|
def initialize(app, settings = nil)
|
||||||
|
@app = app
|
||||||
|
end
|
||||||
|
|
||||||
|
def call(env)
|
||||||
|
# enforces hostname to match the hostname of our connection
|
||||||
|
# this middleware lives after rails multisite so at this point
|
||||||
|
# Discourse.current_hostname MUST be canonical, enforce it so
|
||||||
|
# all Rails helpers are guarenteed to use it unconditionally and
|
||||||
|
# never generate incorrect links
|
||||||
|
env[Rack::Request::HTTP_X_FORWARDED_HOST] = nil
|
||||||
|
env[Rack::HTTP_HOST] = Discourse.current_hostname
|
||||||
|
@app.call(env)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -169,4 +169,18 @@ RSpec.describe ApplicationController do
|
||||||
expect(controller.theme_ids).to eq([theme.id])
|
expect(controller.theme_ids).to eq([theme.id])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe 'Custom hostname' do
|
||||||
|
|
||||||
|
it 'does not allow arbitrary host injection' do
|
||||||
|
get("/latest",
|
||||||
|
headers: {
|
||||||
|
"X-Forwarded-Host" => "test123.com"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(response.body).not_to include("test123")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user