From 3f35fed35a9e61e4a90dc765ddc82142e39ba9f1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 23 Sep 2016 06:29:02 +0000 Subject: [PATCH] Special characters should be escaped --- mod/profile.php | 4 ++-- view/theme/frio/php/default.php | 2 +- view/theme/frio/php/standard.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mod/profile.php b/mod/profile.php index 681b1dbd1c..a8a6ad3885 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -10,7 +10,7 @@ function profile_init(&$a) { $a->page['aside'] = ''; if($a->argc > 1) - $which = $a->argv[1]; + $which = htmlspecialchars($a->argv[1]); else { $r = q("select nickname from user where blocked = 0 and account_expired = 0 and account_removed = 0 and verified = 1 order by rand() limit 1"); if(count($r)) { @@ -27,7 +27,7 @@ function profile_init(&$a) { $profile = 0; if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) { $which = $a->user['nickname']; - $profile = $a->argv[1]; + $profile = htmlspecialchars($a->argv[1]); } else { auto_redir($a, $which); diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index db3a92a626..bfc11a3580 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -17,7 +17,7 @@ <?php if(x($page,'title')) echo $page['title'] ?> - + get_baseurl(); ?> diff --git a/view/theme/frio/php/standard.php b/view/theme/frio/php/standard.php index 5535b9ed71..4a92a6aecf 100644 --- a/view/theme/frio/php/standard.php +++ b/view/theme/frio/php/standard.php @@ -11,7 +11,7 @@ <?php if(x($page,'title')) echo $page['title'] ?> - + get_baseurl(); ?>