From 14570b18563e26dfb6b537fe201562159660a7a2 Mon Sep 17 00:00:00 2001 From: doomholderz Date: Wed, 19 Jun 2024 20:37:47 +0100 Subject: [PATCH] Adding pragmatic container security overview blog --- ...ro_pragmatic_container_security_guide.html | 60 +++++++++++++++++++ index.html | 5 +- style.css | 28 ++++++++- 3 files changed, 88 insertions(+), 5 deletions(-) create mode 100644 blogs/intro_pragmatic_container_security_guide.html diff --git a/blogs/intro_pragmatic_container_security_guide.html b/blogs/intro_pragmatic_container_security_guide.html new file mode 100644 index 0000000..5fa48d5 --- /dev/null +++ b/blogs/intro_pragmatic_container_security_guide.html @@ -0,0 +1,60 @@ + + + + + + doomholderz - Pragmatic Container Security Guide + + + +
+

Guide to + Pragmatic Container Security

+

Intro

+

This is a guide for pragmatically improving your container + security capabilities, with guidance on all tenets of container + security.

+

Great effort has been made to zero-in on the + highest-impacting controls to reduce risk associated with + container workloads, providing a practical roadmap for + implementing strong container security.

+

Each recommendation will be supplemented with: how to + implement; what risk is actually mitigated through + implementing; further steps you can take to mature this control + (where appropriate).

+

WTF is Container + Security

+

The tl;dr is that container security is our software + supply-chain security.

+

The l;r is that container security is the practice + of ensuring that we are:

+ +

How to use this Guide

+

This guide will be split into the specific domains of + container security:

+ +

Included in each recommendation will be steps to implement + for Docker deployment of containers, and Kubernetes + deployments.

+

It’s recommended to audit your adherence to all requirements + listed, and then work through the gaps systematically. Or just + free-wheel it, different strokes I guess…

+
+ + diff --git a/index.html b/index.html index 460861c..608e69e 100644 --- a/index.html +++ b/index.html @@ -9,10 +9,11 @@

doomholderz Security Blog

+

Security engineer, sharing interesting things here

diff --git a/style.css b/style.css index 8a16cf3..5da63d9 100644 --- a/style.css +++ b/style.css @@ -15,6 +15,17 @@ h1, h2, h3, h4, h5, h6 { margin: 20px 0; } +.center_p { + text-align:center; + background-color:grey; +} + +h3 { + text-align: left; + margin-left:20px; + padding:0; +} + nav { text-align: center; margin: 20px 0; @@ -32,12 +43,17 @@ nav a:hover { } ul { - list-style-type: none; - padding: 0; +/* list-style-type: none; */ + padding-left:50px; } ul li { - margin: 10px 0; + margin: 0px 0; +} + +li p { + margin:0px; + margin-left:-10px; } a { @@ -61,6 +77,12 @@ a:hover { padding: 0 20px; /* Added padding for body text */ } +code { + background-color: #555555; /* Light grey background */ + color: white; /* Red font color */ + font-size:13px; +} + footer { text-align: center; margin-top: 20px;