Skip to content
Snippets Groups Projects
Commit 68b8730c authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed reflection XSS in dns spf form

parent 5008d8ce
No related branches found
No related tags found
No related merge requests found
......@@ -108,9 +108,9 @@ class page_action extends tform_actions {
}
//set html-values
$app->tpl->setVar("spf_ip", $spf_ip);
$app->tpl->setVar("spf_hostname", $spf_hostname);
$app->tpl->setVar("spf_domain", $spf_domain);
$app->tpl->setVar("spf_ip", $spf_ip, true);
$app->tpl->setVar("spf_hostname", $spf_hostname, true);
$app->tpl->setVar("spf_domain", $spf_domain, true);
//create spf-mechanism-list
$spf_mechanism_value = array(
'+' => 'spf_mechanism_pass_txt',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment