[object Object]

  • 14 Posts
  • 164 Comments
Joined 11 months ago
cake
Cake day: September 22nd, 2024

help-circle







  • Could be because OWASP now actively recommends against periodic password changes.

    Ensure credential rotation when a password leak occurs, at the time of compromise identification or when authenticator technology changes. Avoid requiring periodic password changes; instead, encourage users to pick strong passwords and enable Multifactor Authentication Cheat Sheet (MFA). According to NIST guidelines, verifiers should not mandate arbitrary password changes (e.g., periodically).















  • ($@ > /dev/null 2>&1 &)

    Simple bash function that runs something fully detached even if its parent closes, and is not dependent on any software feature such as bash’s disown

    alias sp='sudo systemctl stop'
    alias sr='sudo systemctl restart'
    alias ss='sudo systemctl status'
    alias sup='systemctl --user stop'
    alias sur='systemctl --user restart'
    alias sus='systemctl --user status'
    

    Bunch or systemctl related aliases