mirror of
https://github.com/friendica/friendica
synced 2025-04-23 07:10:14 +00:00
Issue 14324: Sanitize profile input
This commit is contained in:
parent
aae004d3d2
commit
ef71840ddc
4 changed files with 38 additions and 6 deletions
|
@ -125,9 +125,9 @@ class Index extends BaseSettings
|
|||
$country_name = trim($request['country_name']);
|
||||
$pub_keywords = self::cleanKeywords(trim($request['pub_keywords']));
|
||||
$prv_keywords = self::cleanKeywords(trim($request['prv_keywords']));
|
||||
$xmpp = trim($request['xmpp']);
|
||||
$matrix = trim($request['matrix']);
|
||||
$homepage = trim($request['homepage']);
|
||||
$xmpp = $this->cleanInput(trim($request['xmpp']));
|
||||
$matrix = $this->cleanInput(trim($request['matrix']));
|
||||
$homepage = $this->cleanInput(trim($request['homepage']));
|
||||
if ((strpos($homepage, 'http') !== 0) && (strlen($homepage))) {
|
||||
// neither http nor https in URL, add them
|
||||
$homepage = 'http://' . $homepage;
|
||||
|
@ -358,6 +358,11 @@ class Index extends BaseSettings
|
|||
return $profileFields;
|
||||
}
|
||||
|
||||
private function cleanInput(string $input): string
|
||||
{
|
||||
return str_replace(['<', '>', '"', ' '], '', $input);
|
||||
}
|
||||
|
||||
private static function cleanKeywords($keywords): string
|
||||
{
|
||||
$keywords = str_replace(',', ' ', $keywords);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue