Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness.
0
stars
0
forks
source link
Idea: plugin to warn about improperly comparing hashes (sha1, etc) #221
Open
TysonAndre opened 5 years ago
For hash_file, md5, sha1, etc.
'fake_hash_value_' . $i
!=
or==
instead of===
. Loose inequality has surprising behaviors. (analyze in PostOrder with that plugin)hash_equals
for hashes of sensitive information (passwords)