From f5aa8b532c07006b029f73025efad88b781cc8a7 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Wed, 15 May 2024 19:03:37 +0200 Subject: [PATCH] chore(kb): kickstart articles to widen --- knowledge base/kics.md | 48 +++++++++++++++++++++++++++++++++++++++ knowledge base/osquery.md | 47 ++++++++++++++++++++++++++++++++++++++ knowledge base/stress.md | 41 +++++++++++++++++++++++++++++++++ 3 files changed, 136 insertions(+) create mode 100644 knowledge base/kics.md create mode 100644 knowledge base/osquery.md create mode 100644 knowledge base/stress.md diff --git a/knowledge base/kics.md b/knowledge base/kics.md new file mode 100644 index 0000000..1fda773 --- /dev/null +++ b/knowledge base/kics.md @@ -0,0 +1,48 @@ +# Kics + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + +## TL;DR + +
+ Installation and configuration + +```sh +docker pull 'checkmarx/kics' +``` + +
+ +
+ Usage + +```sh +docker run -t -v "${PWD}:/path" 'checkmarx/kics' scan -p '/path' +docker run -t -v "${PWD}:/path" 'checkmarx/kics' scan -p '/path' -o '/path/' +``` + +
+ + + +## Further readings + +- [Website] + + + + + + + +[website]: https://docs.kics.io/latest/ + + diff --git a/knowledge base/osquery.md b/knowledge base/osquery.md new file mode 100644 index 0000000..4d0acaf --- /dev/null +++ b/knowledge base/osquery.md @@ -0,0 +1,47 @@ +# `osquery` + + + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + 1. [Sources](#sources) + +## TL;DR + + + + + + + +## Further readings + +- [Github] + +### Sources + + + + + + + +[github]: https://github.com/osquery/osquery + + diff --git a/knowledge base/stress.md b/knowledge base/stress.md new file mode 100644 index 0000000..d60a4d1 --- /dev/null +++ b/knowledge base/stress.md @@ -0,0 +1,41 @@ +# Stress + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + 1. [Sources](#sources) + +## TL;DR + +
+ Installation and configuration + +```sh +dnf install 'stress' +yum install 'stress' +``` + +
+ +
+ Usage + +```sh +stress --cpu '2' --timeout '10m' +``` + +
+ +## Further readings + +### Sources + + + + + + + +