Skip to content

Commit

Permalink
fix for missing semicolon for IP_INFO variable, fixes #59
Browse files Browse the repository at this point in the history
  • Loading branch information
mrash committed Nov 10, 2018
1 parent c673a99 commit aa17ab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions install.pl
Expand Up @@ -810,6 +810,7 @@ ()
if (/^\s*(\S+)\s+(.*?)\;/) {
my $varname = $1;
my $val = $2;
next if $varname eq 'IP_INFO';
if ($val =~ m|/.+| and $varname =~ /^\s*(\S+)Cmd$/) {
### found a command
$cmds{$1} = $val;
Expand Down
2 changes: 1 addition & 1 deletion psad.conf
Expand Up @@ -210,7 +210,7 @@ REPUTATION_FEED "EmergingThreats Compromised IPs",4,IP,newline,1440,
### in the URL will be substituted with the actual source IP for each
### detect scan.
ENABLE_IP_INFO_URL Y;
IP_INFO "Talos Intelligence",https://www.talosintelligence.com/reputation_center/lookup?search=$SRC
IP_INFO "Talos Intelligence",https://www.talosintelligence.com/reputation_center/lookup?search=$SRC;

### When enabled, this instructs psad to write the "msg" field
### associated with Snort rule matches to syslog.
Expand Down

0 comments on commit aa17ab2

Please sign in to comment.