Скрипт авторизации
Date: 06/19/06
(Code WTF) Keywords: no keywords
$user_input = @$_POST['pass'];
$filename = "pw.pw";
$pwfile = fopen ($filename, "r");
$valpas = fgets($pwfile, 512);
$password = crypt($valpas);
if ( !strcmp( crypt($user_input, $password), $password) )
{
[skipped]
}
Пароль в pw.pw хранится в открытом виде :)
Source: http://community.livejournal.com/code_wtf/42463.html