# Weak Password Recovery Mechanism for Forgotten Password (CWE-640) The product contains a mechanism for users to recover or change their passwords without knowing the original password, but the mechanism is weak. **Stack:** Go - Prevalence: Wysoka Często wykorzystywana - Impact: Wysoki 3 reguł o wysokim poziomie - Prevention: Udokumentowane 3 przykładów poprawek **OWASP:** Identification and Authentication Failures (A07:2021-Identification and Authentication Failures) - #7 ## Description Weak password recovery mechanisms can be exploited to take over user accounts. Common issues include predictable reset tokens, security questions with easily guessable answers, or lack of verification. ## Prevention Strategie zapobiegania dla Weak Password Recovery oparte na 1 regułach detekcji Shoulder. ### Go Use crypto/rand with 32+ bytes of entropy for password reset tokens ## Consequences - Uzyskanie uprawnień - Obejście mechanizmu ochrony ## Mitigations - Do linków resetowania hasła używaj mocnych, losowych tokenów - Wdroż wygasanie tokenów (np. po 1 godzinie) - Wymagaj dodatkowej weryfikacji, np. e-mailem lub SMS-em - Nigdy nie umieszczaj tokenu resetowania w URL-ach, które mogą być logowane ## Detection - Total rules: 3 - Languages: go, javascript, typescript, python ## Rules by Language ### Go (1 rules) - **Weak Password Reset Token** [HIGH]: Password reset token uses predictable values like timestamps or math/rand. - Remediation: Generate reset tokens using crypto/rand with at least 32 bytes of entropy. ```go import "crypto/rand" func generateResetToken() (string, error) { b := make([]byte, 32) if _, err := rand.Read(b); err != nil { return "", err } return hex.EncodeToString(b), nil } ``` Learn more: https://shoulder.dev/learn/go/cwe-640/weak-password-reset-token