summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2014-10-21 14:25:25 -0400
committerjim-p <jimp@pfsense.org>2014-10-21 14:25:53 -0400
commitc25d1fd7e5c5d8e147977ef99c6005be71ee6d72 (patch)
tree115eeec31fa45ea0a56b9cae31a70359c59d49b4 /usr
parent687d0a6d053377263537fa75ee46fadaa6e51d56 (diff)
downloadpfsense-c25d1fd7e5c5d8e147977ef99c6005be71ee6d72.zip
pfsense-c25d1fd7e5c5d8e147977ef99c6005be71ee6d72.tar.gz
Encode values before displaying them back to the user in notification settings
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/system_advanced_notifications.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr/local/www/system_advanced_notifications.php b/usr/local/www/system_advanced_notifications.php
index 2ead28d..20ad171 100644
--- a/usr/local/www/system_advanced_notifications.php
+++ b/usr/local/www/system_advanced_notifications.php
@@ -209,28 +209,28 @@ include("head.inc");
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Registration Name"); ?></td>
<td width="78%" class="vtable">
- <input name='name' value='<?php echo $pconfig['name']; ?>' /><br />
+ <input name='name' value='<?php echo htmlspecialchars($pconfig['name']); ?>' /><br />
<?=gettext("Enter the name to register with the Growl server (default: PHP-Growl)."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Notification Name"); ?></td>
<td width="78%" class="vtable">
- <input name='notification_name' value='<?php echo $pconfig['notification_name']; ?>' /><br />
+ <input name='notification_name' value='<?php echo htmlspecialchars($pconfig['notification_name']); ?>' /><br />
<?=sprintf(gettext("Enter a name for the Growl notifications (default: %s growl alert)."), $g['product_name']); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("IP Address"); ?></td>
<td width="78%" class="vtable">
- <input name='ipaddress' value='<?php echo $pconfig['ipaddress']; ?>' /><br />
+ <input name='ipaddress' value='<?php echo htmlspecialchars($pconfig['ipaddress']); ?>' /><br />
<?=gettext("This is the IP address that you would like to send growl notifications to."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Password"); ?></td>
<td width="78%" class="vtable">
- <input name='password' type='password' value='<?php echo $pconfig['password']; ?>' /><br />
+ <input name='password' type='password' value='<?php echo htmlspecialchars($pconfig['password']); ?>' /><br />
<?=gettext("Enter the password of the remote growl notification device."); ?>
</td>
</tr>
@@ -260,14 +260,14 @@ include("head.inc");
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("E-Mail server"); ?></td>
<td width="78%" class="vtable">
- <input name='smtpipaddress' value='<?php echo $pconfig['smtpipaddress']; ?>' /><br />
+ <input name='smtpipaddress' value='<?php echo htmlspecialchars($pconfig['smtpipaddress']); ?>' /><br />
<?=gettext("This is the FQDN or IP address of the SMTP E-Mail server to which notifications will be sent."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("SMTP Port of E-Mail server"); ?></td>
<td width="78%" class="vtable">
- <input name='smtpport' value='<?php echo $pconfig['smtpport']; ?>' /><br />
+ <input name='smtpport' value='<?php echo htmlspecialchars($pconfig['smtpport']); ?>' /><br />
<?=gettext("This is the port of the SMTP E-Mail server, typically 25, 587 (submission) or 465 (smtps)"); ?>
</td>
</tr>
@@ -281,28 +281,28 @@ include("head.inc");
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("From e-mail address"); ?></td>
<td width="78%" class="vtable">
- <input name='smtpfromaddress' type='text' value='<?php echo $pconfig['smtpfromaddress']; ?>' /><br />
+ <input name='smtpfromaddress' type='text' value='<?php echo htmlspecialchars($pconfig['smtpfromaddress']); ?>' /><br />
<?=gettext("This is the e-mail address that will appear in the from field."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Notification E-Mail address"); ?></td>
<td width="78%" class="vtable">
- <input name='smtpnotifyemailaddress' type='text' value='<?php echo $pconfig['smtpnotifyemailaddress']; ?>' /><br />
+ <input name='smtpnotifyemailaddress' type='text' value='<?php echo htmlspecialchars($pconfig['smtpnotifyemailaddress']); ?>' /><br />
<?=gettext("Enter the e-mail address that you would like email notifications sent to."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Notification E-Mail auth username (optional)"); ?></td>
<td width="78%" class="vtable">
- <input name='smtpusername' type='text' value='<?php echo $pconfig['smtpusername']; ?>' /><br />
+ <input name='smtpusername' type='text' value='<?php echo htmlspecialchars($pconfig['smtpusername']); ?>' /><br />
<?=gettext("Enter the e-mail address username for SMTP authentication."); ?>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Notification E-Mail auth password"); ?></td>
<td width="78%" class="vtable">
- <input name='smtppassword' type='password' value='<?php echo $pconfig['smtppassword']; ?>' /><br />
+ <input name='smtppassword' type='password' value='<?php echo htmlspecialchars($pconfig['smtppassword']); ?>' /><br />
<?=gettext("Enter the e-mail address password for SMTP authentication."); ?>
</td>
</tr>
OpenPOWER on IntegriCloud