HxHippy

Secure Password Generator

Generate cryptographically secure passwords.

Last updated: 2024-12-15

Password Generator

#!/bin/bash
tr -dc 'A-Za-z0-9!@#$%^&*' < /dev/urandom | head -c "${1:-16}"; echo
beginner Security Updated 2024-12-15
  • password
  • generator
  • random
  • secure