Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| # 2/19, @DefensiveDepth | |
| # Logstash filter for enriching osquery chrome extension data with CRXcavator (CRXcavator.io) | |
| filter { | |
| if "^pack_server-windows_Chrome.*" =~ "[osquery][name]" { | |
| # Use the http filter to query the relevant extension data using the identifier and version | |
| # Dump the report data & headers into new fields, CE-Raw & CE-Headers | |
| http { |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| ''' | |
| This is an example of how to send data to Slack webhooks in Python with the | |
| requests module. | |
| Detailed documentation of Slack Incoming Webhooks: | |
| https://api.slack.com/incoming-webhooks | |
| ''' | |
| import json | |
| import requests |