Merge pull request #3169 from riking/patch-3

SECURITY: Don't leak topic title in the redirect
This commit is contained in:
Régis Hanol 2015-02-05 12:47:58 +01:00
commit f1403206ca
2 changed files with 17 additions and 0 deletions

View File

@ -70,6 +70,8 @@ class PostsController < ApplicationController
user = User.find(params[:user_id].to_i)
request['u'] = user.username_lower if user
end
guardian.ensure_can_see!(post)
redirect_to post.url
end

View File

@ -821,4 +821,19 @@ describe PostsController do
end
end
describe "short link" do
let(:topic) { Fabricate(:topic) }
let(:post) { Fabricate(:post, topic: topic) }
it "redirects to the topic" do
xhr :get, :short_link, post_id: post.id
response.should be_redirect
end
it "returns a 403 when access is denied" do
Guardian.any_instance.stubs(:can_see?).returns(false)
xhr :get, :short_link, post_id: post.id
response.should be_forbidden
end
end
end