Use a strong bcrypt cost factor
`bcrypt.GenerateFromPassword` (and similar helpers) must use a cost factor of at least `bcrypt.DefaultCost` (10).
#Metadata
#Why it matters
Low bcrypt costs make password hashes cheap to crack offline and undermine credential storage protections.
#Remediation
Pass `bcrypt.DefaultCost` (or a higher value tuned to your performance budget) instead of a literal cost less than 10.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/go/go.security.weak-bcrypt-cost.rule.yaml.