Skip to content

Commit

Permalink
Merge pull request #220 from doktornotor/patch-4
Browse files Browse the repository at this point in the history
  • Loading branch information
rbgarga committed Nov 30, 2016
2 parents 838ef79 + 8186fdd commit 5295c75
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion security/pfSense-pkg-suricata/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PORTNAME= pfSense-pkg-suricata
PORTVERSION= 3.0
PORTREVISION= 9
PORTREVISION= 10
CATEGORIES= security
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ function build_logfile_list() {
build_instance_list()
))->setHelp('Choose which instance alerts you want to inspect.');

$group = new Form_Group('Save or Remove Hosts');
$group = new Form_Group('Save or Remove Logs');

$group->add(new Form_Button(
'download',
Expand All @@ -494,7 +494,7 @@ function build_logfile_list() {

$section->add($group);

$group = new Form_Group('Save or Remove Hosts');
$group = new Form_Group('Save Settings');

$group->add(new Form_Button(
'save',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@

$section->add($group);

$group = new Form_Group('Save or Remove Hosts');
$group = new Form_Group('Save Settings');

$group->add(new Form_Button(
'save',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
'ETPro for Suricata offers daily updates and extensive coverage of current malware threats.',
$pconfig['enable_etpro_rules'] == 'on' ? true:false,
'on'
))->setHelp('The ETPro rules contain all of the ETOpen rules, so the ETOpen rules are not required and are disabled when the ETPro rules are selected. <a href="https://www.proofpoint.com/us/solutions/products/threat-intelligence/ET-Pro-Ruleset">Sign Up for an ETPro Account</a>');
))->setHelp('The ETPro rules contain all of the ETOpen rules, so the ETOpen rules are not required and are disabled when the ETPro rules are selected. <a href="https://www.proofpoint.com/us/products/et-pro-ruleset">Sign Up for an ETPro Account</a>');
$section->addInput(new Form_Input(
'etprocode',
'ETPro Subscription Configuration Code',
Expand All @@ -230,7 +230,7 @@
'Snort VRT free Registered User or paid Subscriber rules',
$pconfig['enable_vrt_rules'] == 'on' ? true:false,
'on'
))->setHelp('<a href="https://www.snort.org/users/sign_up">Sign Up for a free Registered User Rule Account</a><br /><a href="http://www.emergingthreats.net/solutions/etpro-ruleset/https://www.snort.org/products">Sign Up for paid Sourcefire VRT Certified Subscriber Rules</a>');
))->setHelp('<a href="https://www.snort.org/users/sign_up">Sign Up for a free Registered User Rule Account</a><br /><a href="https://www.snort.org/products">Sign Up for paid Sourcefire VRT Certified Subscriber Rules</a>');
$section->addInput(new Form_Input(
'snort_rules_file',
'Snort VRT Rules Filename',
Expand All @@ -256,7 +256,7 @@
'Hide deprecated rules categories in the GUI and remove them from the configuration. Default is Not Checked.',
$pconfig['hide_deprecated_rules'] == 'on' ? true:false,
'on'
))->setHelp('If you are a Snort VRT Paid Subscriber, the community ruleset is already built into your download of the Snort VRT rules, and there is no benefit in adding this rule set.');
));
$form->add($section);

$section = new Form_Section('Rules Update Settings');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<?php if ($disable): ?>
<tr title="<?=$tooltip?>">
<td class="text-center">
<img src="/icon_block_d.gif" width="11" height"11" border="0"/>
<i class="fa fa-times text-danger"></i>
<?php else: ?>
<tr>
<td class="text-center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,10 +587,10 @@ function build_cat_list() {
$msg = '<b>' . gettext('Note: ') . '</b>' . gettext('You should not disable flowbit rules! Add Suppress List entries for them instead by ');
$msg .= '<a href="/suricata/suricata_rules_flowbits.php?id=' . $id . '" title="' . gettext('Add Suppress List entry for Flowbit Rule') . '">';
$msg .= gettext('clicking here.') . '</a>';
$group->setHelp('When finished, click APPLY to save and send any SID enable/disable changes made on this tab to Snort.<br/>' . $msg);
$group->setHelp('When finished, click APPLY to save and send any SID enable/disable changes made on this tab to Suricata.<br/>' . $msg);
}
else {
$group->setHelp('When finished, click APPLY to save and send any SID enable/disable changes made on this tab to Snort.');
$group->setHelp('When finished, click APPLY to save and send any SID enable/disable changes made on this tab to Suricata.');
}
$section->add($group);
print($section);
Expand Down

0 comments on commit 5295c75

Please sign in to comment.