Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #237 from michalpurzynski/master
Browse files Browse the repository at this point in the history
Correct the order of "where" and "category" fields
  • Loading branch information
jeffbryner committed Feb 4, 2015
2 parents 51061c9 + de31324 commit 7f3bc0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/heka-lua-bro/bro_intel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ function process_message()
msg.Fields['filemimetype'] = toString(matches[8])
msg.Fields['filedesc'] = toString(matches[9])
msg.Fields['seenindicator'] = toString(matches[10])
msg.Fields['seenwhere'] = toString(matches[11])
msg.Fields['seenindicatortype'] = toString(matches[12])
msg.Fields['seenindicatortype'] = toString(matches[11])
msg.Fields['seenwhere'] = toString(matches[12])
msg.Fields['sources'] = lastField(toString(matches[13]))
msg['Payload'] = "Bro intel match: " .. toString(msg.Fields['seenindicator'])
inject_message(msg)
Expand Down

0 comments on commit 7f3bc0a

Please sign in to comment.