Advertisement
Guest User

Firegen README file

a guest
Mar 22nd, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. Firegen for Snort App version 1.0.
  2.  
  3. Copyright (C) 2018 Adrian Grigorof All Rights Reserved.
  4.  
  5. The Firegen for Snort app provides several dashboards with statistics compiled from data recorded by Snort and stored in MySQL database by Barnyard2.
  6.  
  7.  
  8. Configuration instructions:
  9.  
  10. Snort may be installed on a different server than Splunk but Splunk needs to have access to the MySQL database that stores the Snort events. In our case, we have a dedicated Snort server with a Splunk heavy forwarder installed to send the events to the indexer and the Splunk DB Connect App is installed on the heavy forwarder.
  11.  
  12. Configure Snort 2.9.9.x, Barnyard2, PulledPork and BASE as described in https://s3.amazonaws.com/snort-org-site/production/document_files/files/000/000/122/original/Snort_2.9.9.x_on_Ubuntu_14-16.pdf
  13.  
  14. The document describes the installation in full details for both Ubuntu 14 and 16.
  15.  
  16. Barnyard2 is an open source interpreter for Snort unified2 binary output files. Its primary use is allowing Snort to write to disk in an efficient manner and leaving the task of parsing binary data into various formats to a separate process that will not cause Snort to miss network traffic. - https://github.com/firnsy/barnyard2. Barnyard2 also stores the Snort events into a MySQL database that will be used by the Splunk DB Connect.
  17.  
  18. Pulled Pork provides support for Snort and Suricata rule management such as automated downloading, parsing, state modification - https://github.com/shirkdog/pulledpork
  19.  
  20. BASE is the Basic Analysis and Security Engine. It is based on the code from the Analysis Console for Intrusion Databases (ACID) project. This application provides a web front-end to query and analyze the alerts coming from a SNORT IDS system. BASE is just optional and it is not need it by the Splunk app.
  21.  
  22. Install the Splunk DB Connect App from Splunkbase: https://splunkbase.splunk.com/app/2686/. The role of DB Connect is to extract the Snort events stored in the MySQL database and send them to a Splunk index. Configure the DB Connect as follows:
  23.  
  24. 1. In the Configuration tab click on New Connection and fill up the details specific to your database.
  25. 2. In the Data Lab tab, click New Input
  26. 3. Select the connection created in the step above and the database where the snort data is stored. In our case the connection is called snort_mysql and the database is called "snort"
  27. 4. In the SQL Editor window enter:
  28.  
  29. SELECT event.cid,event.timestamp,SUBSTRING_INDEX(snort.sensor.hostname,":",1) as "host",INET_NTOA(iphdr.ip_src) AS "src_ip",INET_NTOA(iphdr.ip_dst) AS "dst_ip",event.signature,signature.sig_gid,signature.sig_sid,signature.sig_name AS "description"
  30. FROM `snort`.`event`,`snort`.`sensor`,`snort`.`signature`,`snort`.`iphdr`
  31. WHERE event.cid > ?
  32. AND event.signature=signature.sig_id AND event.sid=sensor.sid AND event.sid=sensor.sid AND event.cid=iphdr.cid
  33. ORDER BY event.cid ASC
  34.  
  35. If your database is not called "snort" you need to adjust the SQL statement accordingly (i.e. replace snort.sensor.hostname with your_database.sensor.hostname.
  36.  
  37. 5. Configure the Settings as follows:
  38. Template (default)
  39. Input type: Rising
  40. Rising Column: cid
  41. Checkpoint value: Unlock & Exit
  42. Timestamp: Current index time
  43. Query timeout: 30
  44.  
  45. 6. Click on the Execute SQL to verify the SQL command (the query may return "no results")
  46. 7. Click Next to view the settings and Finish if everything is ok.
  47. 8. Install the Firegen for Splunk app and launch the app to initiate the setup process. The setup is requesting confirmation for the index used to store Snort events. By default is called "snort". The setup also can be used to specify an internal subnet. The app will use the internal subnet to identify internal servers.
  48.  
  49. For support and comments/suggestions, please contact Adrian Grigorof, adigrio@gmail.com or support@firegen.com.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement