Tag_Archive: #Security

· 3 min read

CLI-first Password Manager: Gopass

gopass is a modern, interactive UNIX password manager wrapper designed for secure, multi-store (e.g., combining independent stores like personal and acme for work), and Git-native secret operations. This guide covers setting up gopass from foundation to team-mount configuration utilizing age encryption. [!TIP] Since gopass is fully backward-compatible with the standard pass directory structure and … ... read more »

· 3 min read

UNIX Password Manager (pass) Cheat Sheet and Getting Started Guide

This article covers UNIX Password Manager (pass) Cheat Sheet and Getting Started Guide, originally published as a secure GitHub Gist snippet. pass cheat sheet/guide# Getting started guide to the unix password manager pass. Manage gpg encripted passwords (files) in a standar directory-like hierarchy. Such files can be copied or stored in a git repository. Requirements# Install pass (standard unix … ... read more »

· 3 min read

Some Sugar from a DevOps Life: Secure File Syncing & Cloud Secrets

This is a curated collection of secure file synchronization, cloud infrastructure utilities, and secret management recipes compiled from my public GitHub Gists, representing some sweet shortcuts from a DevOps life. 🔑 keyring, secrets management and CLI# Published: 2026-04-01T05:44:09Z | Original Link: Gist Link # gopass EDITOR=vi gopass insert me/api/xyz_api_key XYZ_API_KEY="$(gopass -o … ... read more »

· 2 min read

SOPS Secrets Management Integration inside Makefiles

This article covers SOPS Secrets Management Integration inside Makefiles, originally published as a secure GitHub Gist snippet. seal-sops: ## SOPS Encrypt all secrets path matching [_sec|secret|config|*.secret*] @find $(PTH) -path "*/_sec/*" -type f -o -path "*/secret/*" -type f -o -path "*/config/*" -name "*.secret*" -type f |\ egrep -v … ... read more »