Advanced Search
Search Results
312 total results found
Certificate Renewal Dry Run
Original ACME Request certbot certonly \ --nginx \ --server https://sub-ca.pki.home.internal/acme/acme@lab.home.internal/directory \ --domain secrets.lab.home.internal \ --email admin@lab.home.internal \ --agree-tos \ --non-interactive Dry Run to...
Migrate to Cluster-wide VLAN Trunking
Purpose We want to define VLAN IDs that will be trunked from vmbr0 up to the physical managed switch connecting the Proxmox VE node(s). Configuring in SDN allows us to define the trunked VLANs in one central location instead of having to manually create the VL...
Convert Formats
Convert P12 to PEM
cat password_file.txt | openssl pkcs12 -in file.p12 -out file.pem -nodes -passin stdin
Output Response Headers Only
curl -sD - -o /dev/null https://domain.tld
procfs Enumeration Pretty Output
Outputs in procfs are separated by null bytes, thus we use tr to translate to new line. find /proc -name environ -exec sh -c "cat {} | tr '\0' '\n'" \; 2>/dev/null | sort -u find /proc -name cmdline -exec sh -c 'tr "\0" " " < "$1"; echo' _ {} \; 2>/dev/null |...