I hereby claim:
- I am frankhassanabad on github.
- I am frankhassanabad (https://keybase.io/frankhassanabad) on keybase.
- I have a public key ASCNJL2XvQ2jA2QIWsLLIbAz1Loxl3DzoUlhZ6TaFZDFjQo
To claim this, I am signing this object:
#!/bin/sh | |
# Download yj from: | |
# https://github.com/sclevine/yj/releases | |
# such as wget https://github.com/sclevine/yj/releases/download/v4.0.0/yj-macos | |
# | |
# Then chmod 755 ./yj-wrapper | |
# Go to your pre-packaged rules and run this: | |
# yj-wrapper.sh |
processors: | |
- add_host_metadata: | |
netinfo.enabled: true | |
- add_cloud_metadata: ~ | |
- add_fields: | |
when.network.source.ip: 10.128.0.21/32 | |
fields: | |
source.geo.location: | |
lat: 42 | |
lon: -93 |
processors: | |
- add_host_metadata: | |
netinfo.enabled: true | |
- add_cloud_metadata: ~ | |
- add_fields: | |
when.network.source.ip: 10.128.0.21/32 | |
fields: | |
source.geo.location: | |
lat: 42 | |
lon: -93 |
processors: | |
- add_host_metadata: | |
netinfo.enabled: true | |
- add_cloud_metadata: ~ | |
- add_fields: | |
when.network.source.ip: 10.128.0.21/32 | |
fields: | |
source.geo.location: | |
lat: 42 | |
lon: -93 |
## Generic links from ML back to SIEM Application | |
# | |
# Several tests runs with each and adding/removing | |
# them to see which ones were effective | |
# | |
Network Overview Links | |
--- | |
# Network Overview By User Name (KQL Query: user.name $user.name$) |
running test for the 1 time with total 0 errors so far | |
running test for the 2 time with total 0 errors so far | |
running test for the 3 time with total 0 errors so far | |
running test for the 4 time with total 0 errors so far | |
running test for the 5 time with total 0 errors so far | |
running test for the 6 time with total 0 errors so far | |
running test for the 7 time with total 0 errors so far | |
running test for the 8 time with total 0 errors so far | |
running test for the 9 time with total 0 errors so far | |
running test for the 10 time with total 0 errors so far |
# | |
# Full text queries | |
# | |
# Match all | |
GET /auditbeat-*/_search | |
{ | |
"query": { | |
"match_all": {} | |
} |
export PLUGIN_NAME=secops | |
# Start kibana | |
alias start-kibana='cd $HOME/projects/kibana && yarn start --no-base-path' | |
# Start bootstrap | |
alias start-bootstrap='cd $HOME/projects/kibana && yarn kbn bootstrap' | |
# Start typecheck | |
alias start-type-check='cd $HOME/projects/kibana && node scripts/type_check.js' |
I hereby claim:
To claim this, I am signing this object:
extern crate futures; | |
use futures::{future, Future}; | |
use std::*; | |
/// Returns an empty future, empty error | |
fn return_empty_result() -> impl Future<Item = (), Error = ()> { | |
future::lazy(|| future::ok::<(), ()>(())) | |
} |