elkserver/mounts/logstash-config/redelk-main/scripts/cs_makekeystrokespath_beforecs4.2.rb (11 lines of code) (raw):
#
# Part of RedELK
# Script to have logstash insert an extra field pointing to the full TXT file of a Cobalt Strike keystrokes file
# Before Cobalt Strike 4.2
#
# Author: Outflank B.V. / Marc Smeets
#
def filter(event)
host = event.get("[agent][name]")
logpath = event.get("[log][file][path]")
implant_id = event.get("[implant][id]")
temppath = logpath.split('/cobaltstrike')
temppath2 = temppath[1].split(/\/([^\/]*)$/)
keystrokespath = "/c2logs/" + "#{host}" + "/cobaltstrike" + "#{temppath2[0]}" + "/keystrokes_" + "#{implant_id}" + ".txt"
event.tag("_rubyparseok")
event.set("[keystrokes][url]", keystrokespath)
return [event]
end