2021-10-15
qradar-syslog

因為 QRadar license 的關係,這幾天又重灌了一次 QRadar server
重新裝好後,發現收不到 device 送過來的 syslog,就找了一下解法

做法上,是建議先在 QRadar server 上,用 tcpdump 來確認是否有流量進來
`

For TCP Syslog, type

$ tcpdump -s 0 -A host Device_Address and port 514

For UDP Syslog, type

$ tcpdump -s 0 -A host Device_Address and udp port 514
`

試了 tcpdump 的 command,不曉得為何沒有看到流量進行,但是由送 syslog 的 client 端看,又是正常的
左看右看時,才看到預設的 ehter interface 是錯的,需要自行指定
command 改為,類似如下
`

For TCP Syslog, type

$ tcpdump -i ens192 -s 0 -A host Device_Address and port 514

For UDP Syslog, type

$ tcpdump -i ens192 -s 0 -A host Device_Address and udp port 514
`

有看到 tcpdump 有流量進來,不過在 log activity 上,還是一直看不到資料

最後是一場大烏龍,重啟 QRadar server 就可以正常收 log 囉

Reference

Read More

2021-06-11
qradar-dsm

記錄有關開發 qradar dsm 相關的事項

如何開始進行

Document

  • Using QID Maps Technical Note - pdf 檔
    • 使用 command line 的方式來操作 qid maps
    • qidmap_cli.sh [-l|-c|-m|-i[-f <filename>]|-e[-f <filename>]|-d]

驗證 Qradar

相關的 youtube 說明

可以參考的 QRadar App 範例

有關 Export 的部分

  • Exporting contents from the DSM Editor
  • Exporting contents as a package
    • 使用 cmd 來進行 export
    • /opt/qradar/bin/contentManagement.pl -a search -c 24 -r "<search_name>"
    • USAGE: /opt/qradar/bin/contentManagement.pl --action <ACTIONTYPE> [--quiet] [--verbose] [--debug] Type /opt/qradar/bin/contentManagement.pl --help <ACTIONTYPE> for help on a specific action
    • content type table
      `
      +-----------------------------------------------------------------------+
       | Custom content type               | String               | ID         |
       |-----------------------------------------------------------------------|
       | Custom properties                 | customproperty       | 6          |
       | Log source type                   | sensordevicetype     | 24         |
       | Log source extensions             | deviceextension      | 16         |
       | Custom QidMap entries             | qidmap               | 27         |
       +-----------------------------------------------------------------------+
      `

有關 DSM LEEF 有關

Reference

Read More

2021-05-28
qradar_development

最近接著需要開發 IBM Qradar DSM 相關的程式,先找找需要的資料囉

QRadar App Development

線上課程

QRadar CE 相關

Qradar CE install

Qradar 相關的文件 & 下載

同場加映 - VMWare ESXi server

同場加映 - VMWare ESXi server 遇到的問題

同場加映 v2 - AWS VM Import/Export - 目前沒有用這方式

QRadar 開發相關

安裝 DSM 的相關說明

Qradar 操作的相關文件

Reference

Read More