Category: Uncategorized

How to Parse Snort IDS Logs in Graylog

Here is the rule that i used in the video: rule “Extract Snort alert fields” when has_field(“message”) then let m = regex(“\(\d+):(\d+):(\d+)\ \[Classification: (.+?)\] \[Priority: (\d+)]: \<(.+?)\> \{(.+?)\} (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})(:(\d{1,5}))? -> (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})(:(\d{1,5}))?\R?”, to_string($message.message)); set_field(“snort_alert”, true); set_field(“generator_id”, m[“0”]); set_field(“signature_id”, m[“1”]); set_field(“signature_revision_id”, m[“2”]); set_field(“description”, m[“3”]); set_field(“classification”, m[“4”]); set_field(“priority”, to_long(m[“5”])); set_field(“protocol”, m[“7”]); set_field(“src_addr”, m[“8”]); set_field(“src_port”, to_long(m[“10”])); set_field(“dst_addr”, m[“11”]); set_field(“dst_port”,
Read More »

I got the CCNA Cyber Ops Scholarship

What is it?   A few months ago, I applied for the new CCNA Cyber Ops scholarship. Cisco plans to offer scholarships to a new breed of cyber security professionals to cover the shortage of security pros. The application process was easy, it took me less than 5 minutes and I already had my application
Read More »

Why an IT pro Needs a Homelab

With the recent hikes in cyber attacks and rampant ransom-ware  infections, it is more critical than ever for IT pros to be educated about cyber security and keep their skills up to date with current trends. One way to keep up with the latest security trends and sharpen security skills is to fire up a
Read More »