Advanced Search
Search Results
649 total results found
Securing Embedded Systems
lock them in a white room. Smart devices are popular, but they are a black box. The consumer usually has little ot no control over the technology being used within said smart devices, and vendors are known to be slow with rolling out security updates for thei...
Email Security
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...
Governance and Accountability
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
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...
Third Party Vendors
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
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
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
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
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
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
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
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...
Overview
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...
Services
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
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...
Deployments
A high-level pod management system that defines the desired state of an app deployed using Kubernetes. Replica sets are used, which manage the creation and monitoring of pods and ensures they always match the desired state defined in the deployment definition...
Volumes
A persistent directory accessible by containers. Volumes in Kubernetes should (theoretically) always be available to a pod, even if when it crashes, moves, or restarts. types Kubernetes supports many kinds of volumes, including: an empty directory a pat...
Exposing Data to Containers
There are two main ways to do this: config maps and secrets. Secrets Secrets are encrypted key-value pairs. They're used to share passwords, API keys, and other things that need to be protected to containers in pods. Config Maps Config maps are stored in p...