Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-11-20 22:37:27 +0400
committerJunio C Hamano <gitster@pobox.com>2012-11-20 22:37:27 +0400
commit79a09bba1cc919f5ea0992db358fb4b14ab2c226 (patch)
tree40b89ba60b8c8210030eb64e519f0abd1a8ce739 /gitweb
parent05849c4818342a0e0ecb597fd2452125b00d543e (diff)
parent0f0ecf68b31303de7cb428554e27d433fe62180e (diff)
Merge branch 'jk/maint-gitweb-xss'
Fixes an XSS vulnerability in gitweb. * jk/maint-gitweb-xss: gitweb: escape html in rss title
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index ce8cb4af16..e8812fa2b9 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -8054,6 +8054,7 @@ sub git_feed {
$feed_type = 'history';
}
$title .= " $feed_type";
+ $title = esc_html($title);
my $descr = git_get_project_description($project);
if (defined $descr) {
$descr = esc_html($descr);