Qradar Ahnlab

QradarAuthor(s): László Czap |

  1. QRadar system 7.2.8 or higher; Instructions. The API samples should not be run directly on a QRadar appliance. The API samples are intended to run on an outside system to poll data from QRadar. QRadar does not run Python 3.3 and the requirements for Python 3.3 is intended for the outside host that is running the code samples.
  2. Please login here. User ID: This field is mandatory. Password: This field is mandatory. Fiscal Year: Forgot your password? Welcome to Q-RADAR.

Mar 24, 2014 QRadar has been the leading SIEM solution in Gartner’s magic quadrant for the past 5 years. It provides a customizable role-based dashboard prioritizing security issues that need to be addressed, and providing extensive capabilities to drill down and investigate suspicious activities.

Created: 28 March 2020 |

Qradar Ahnlab Log

AhnlabLast modified: 14 January 2021 AhnlabTested on: -

Log sources using syslog are very easy to test in QRadar. However, there are some device types that have only polling type (or file based) protocols as configuration options. Among others, Amazon AWS, IBM BigFix, IBM MaaS360, Cisco IPS are such examples. For these, firing a syslog event with the same format and the same logsourceid in the header is useless, because the log source configuration will not match.

Qradar Ahnlab 7

The following workaround can be applied to generate test syslog events for these log sources. This is to be used only in test environments (you don't want to litter your production system with test events anyway).

Go to your console and get a psql connection:

The table sensordeviceprotocols contains the log source type and protocol associations. We add a row to this table such that our tested log source accepts syslog. This table works with identifiers, so you need to find the id of your log source type. For this, use the sensordevicetype table and look for the id column. The column devicetypedescription will help you find the right row. E.g. to find the MaaS360 log source:

This query returns

so we know the id we look for is 361. We also need the id of the syslog protocol, which is 0 (you can find it out from the table sensorprotocol).

Having this we insert a new row:

Here, the third value is just a unique identifier, whereas the last indicates that this is undocumented.

Qradar ahnlab log

Now, if you go back to QRadar UI, and try to add a new log source of your selected type, in the drop-down menu a new item appears: Syslog (Undocumented). Select this, and all you need is to provide a logsourceid and save the new log source. You must use the same id as you provided here in your syslog header when sending in your test events.

After these changes, you need to restart the eventprocessing service. I did

but maybe this is an overkill.

Hint: If you want that the test events look like they come from an existing real log source of the same type, you need to create a new log source of the same type, but with the new Syslog (Undocumented) protocol configuration. When creating this, use the same logsourceid as you have in the real log source and make sure that the parsing order prefers the real log source. This way the test log source will never receive any events, all your test events will seem to belong to your original log source.

Here is the list of log sources for which this workaround should come handy:

  • AhnLab Policy Center APC
  • Akamai KONA
  • Amazon AWS CloudTrail
  • Box
  • Cisco Cloud Web Security
  • Cisco Identity Services Engine
  • Cisco Intrusion Prevention System (IPS)
  • Fasoo Enterprise DRM
  • Flow Classification Engine
  • HP Tandem
  • IBM BigFix
  • IBM BigFix Detect
  • IBM Informix Audit
  • IBM Fiberlink MaaS360
  • IBM Lotus Domino
  • IBM Privileged Session Recorder
  • IBM Proventia Management SiteProtector
  • IBM Proventia Network Intrusion Prevention System (IPS)
  • IBM Security Identity Governance
  • IBM Security Identity Manager
  • IBM Security Privileged Identity Manager
  • IBM SmartCloud Orchestrator
  • Juniper Networks AVT
  • Juniper Security Binary Log Collector
  • Kisco Information Systems SafeNet/i
  • McAfee Application/Change Control
  • Microsoft Endpoint Protection
  • Microsoft Operations Manager
  • Microsoft SCOM
  • Microsoft Windows Defender ATP
  • Netskope Active
  • ObserveIT
  • Open LDAP Software
  • OpenStack
  • Oracle Audit Vault
  • Oracle BEA WebLogic
  • Oracle Enterprise Manager
  • Oracle Fine Grained Auditing
  • Pirean Access: One
  • Resolution1 CyberSecurity
  • Riverbed SteelCentral NetProfiler
  • Riverbed SteelCentral NetProfiler Audit
  • Salesforce Security Auditing
  • Salesforce Security Monitoring
  • Seculert Seculert
  • SOAP Webservice-based messages, pre-normalized
  • Sophos Enterprise Console
  • Sophos PureMessage
  • Sun ONE LDAP
  • Sybase ASE
  • Symantec Critical System Protection
  • Symantec System Center
  • Trend Micro Control Manager
  • Trend Micro Office Scan
  • VMware vCloud Director
Log

The method above was tested on version 7.3.2., table structure might change without notice. You lose your support if you modify psql tables.

Comments are closed.