WARNING
SSH keyfile passwords are very insecure. They can be cracked in 30 minutes.
- The default OpenSSH key encryption is worse than plaintext
- How long would it take to crack your [SSH keyfile] password?
Never reuse your password
def before_all(context): | |
print('before_all activated') | |
def after_all(context): | |
print('after_all activated') | |
def before_feature(context, feature): | |
print('before_feature activated') |
WARNING
SSH keyfile passwords are very insecure. They can be cracked in 30 minutes.
Never reuse your password
# Add this to your ~/.bashrc file | |
# Use .bashrc.d directory instead of bloated .bashrc file | |
# From: https://waxzce.medium.com/use-bashrc-d-directory-instead-of-bloated-bashrc-50204d5389ff | |
BASHRC_DIR="${HOME}/.bashrc.d" | |
# Optionally create directory if not exists | |
if [ ! -d "${BASHRC_DIR}" ]; then | |
mkdir -p "${BASHRC_DIR}"; | |
chmod 700 "${BASHRC_DIR}"; | |
fi | |
# Load any *.bashrc files in ~/.bashrc.d/ |