Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

688 total results found

Email Security

CompTIA Security+ Unit 10

who even still uses email anyway Email is cleartext by default. However, S/MIME and PGP are used to secure email. They both use certificates to provide authentication, message integrity, non-repudiation, and privacy. Secure Multipurpose Internet Mail Extensi...

Unit 11

CompTIA Security+

Governance and Accountability

CompTIA Security+ Unit 11

who in tel aviv can i blame for all my problems Governance practices ensure organizations abide by all applicable cybersecurity laws and regulations to protect them from legal liability. Governance oversees: regulatory compliance requirements contractual ...

Data Governance Roles

CompTIA Security+ Unit 11

role-based access control redux Role Description Role Owner A senior (executive) role with ultimate responsibility for maintaining the confidentiality, integrity, and availability of an information asset. A high-ranking employee, li...

Unit 12

CompTIA Security+

Third Party Vendors

CompTIA Security+ Unit 12

just don't get third partied uhhh third parties are sometimes good and sometimes bad. choose the good ones to do business with. Third-Party Relationships (Raw Lesson Content) Vendor - A vendor is a company that sells an organization's goods or provides su...

Rules of Engagement

CompTIA Security+ Unit 12

the parameters and expectations for third-party relationships we need to expect a certain level to be met when partnering professionally with professed professionals The Expectations Roles and Responsibilities (who is responsible to do what in this partne...

Vendor Assessment

CompTIA Security+ Unit 12

how do we know which third-party vendors to do business with? uhhh just do a bunch of stuff on them. lowkey experiment on them. Penetration Testing Right to Audit Clause Proof of Internal Audits Independent Assessments Supply Chain Analysis Audits a...

Ansible

Documentation

A configuration management tool that allows organizations to automate the deployment of secure baseline configurations across diverse systems. Ansible is able to enforce consistency and is also able to detect and correct deviations from the baseline.

Productivity

Homelabbing Services

Git & Version Control Forgejo my goat. I can sync my Obsidian vault to a private repo. I can code projects and make them public. I could even link my selfhosted Forgejo account to my GitHub account. This is peak.  Code Server This is annoying to setup. This...

SSH

Homelabbing Services

enter the mainframe but remotely like a cool hackerman hacker!!11!!1! alr so basically we don't like password authentication. so we will use ssh keypairs. (use your own email) ssh-keygen -t ed25519 -C "table@liltable.dev" now we shall copy over our newly ...

Fabricator

Homelabbing Services

self-hosted minecraft server panel good UI, lots of modloader support, has direct modpack pulling from CurseForge/Modrinth. me likey :) docker compose: --- services: fabricator: container_name: fabricator image: ghcr.io/philderks/fabricator:l...

Debian Server

Linux Distro Installs

i personally go to debian 12 bookworm for my default servers it just kinda works and i wanna write down what i usually do so i can look back on it later install gui Don't install anything except the SSH server and the standard system utilities.Once you're i...

Kubernetes

notes taken while learning kubernetes for fun and possible job upgrades mwehehehe

Overview

Kubernetes

Kubernetes is an open-source container orchestration platform. What does this mean? It means that Kubernetes is just natively scalable Docker. It features: self healing: automatically restarts crashed containers; shifts workloads when nodes go down horiz...

Core Components

Kubernetes

Services

Kubernetes Core Components

API objects that provide reliable network endpoints and load balancing for a pod or set of pods. Services are used to expose pods over a network. They maintain static IP addresses and DNS records, regardless of scaling, restarts, or migrations. Services choos...

Pods

Kubernetes Core Components

A container or group of containers that share storage, network resources, and a deployment specification. Pods can be created manually through the usage of the kubectl CLI. However, most opt to use manifest files (usually in YAML). Here's an example for a sim...