Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "(gdbsudo) Launch", | |
"type": "cppdbg", | |
"request": "launch", |
#!/bin/sh | |
pkexec /usr/bin/gdb "$@" |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deploy | |
spec: | |
selector: | |
matchLabels: | |
app: nginx | |
template: | |
metadata: |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: alpine-deployment | |
labels: | |
app: alpine | |
spec: | |
replicas: 300 | |
selector: | |
matchLabels: |
#!/bin/sh | |
pkexec /usr/bin/gdb "$@" |
# A Falco rules file is a YAML file containing three types of elements: | |
# | |
# - rule: Conditions under which an alert should be generated. | |
# A rule is accompanied by a descriptive output string that is sent with the alert. | |
# | |
# - macro: Rule condition snippets that can be re-used inside rules and even other macros. | |
# Macros provide a way to name common patterns and factor out redundancies in rules. | |
# | |
# - list: Collections of items that can be included in rules, macros, or other lists. | |
# Unlike rules and macros, lists cannot be parsed as filtering expressions. |
package main | |
import ( | |
"bytes" | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/tls" | |
"crypto/x509" | |
"crypto/x509/pkix" | |
"encoding/pem" |
Tested on falcosecurity/falco#968
pacman -S gcc cmake make pkgconfig autoconf automake patch elfutils libelf libtool linux-headers jq oniguruma zlib ncurses yaml-cpp openssl curl c-ares protobuf grpc libyaml
package cache | |
import ( | |
"sync" | |
) | |
type cacheItem interface{} | |
type Cache interface { | |
// Get returns the value associated with the key parameter. |