PW100

Matching inputs, secrets or tokens using the == operator is vulnerable to timing attacks.

Example

if password == "SUPER_SECRET": 
  proceed()
if password == hash:
  proceed()

Quick Fixes