最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
用户口令检查/etc/passwd
时间:2022-06-24 16:06:15 编辑:袖梨 来源:一聚教程网
/*
* etc.passwd.inc v1.0
*
* Syntax:
* verifypasswd(string USERNAME, string PASSWORD)
*
* The function will return one of three values:
* -2 if there was a file reading error
* -1 if the password is incorrect
* 0 if the username doesn’t exist
* 1 if the password is correct
*
* Written by WarMage ( [email protected] )
*
*/
function verifypasswd ($USERNAME, $PASSWORD) {
$fd = fopen( "/etc/passwd", "r");
$contents = fread($fd, filesize( "/etc/passwd"));
fclose($fd);
if (!$contents) return -2;
$lines = split( "n", $contents);
$passwd = array();
for($count=0;$count
if ($user == $USERNAME) {
break;
}
}
if (!$user) return 0;
$cryptedpass = $pass;
$salt = substr($cryptedpass,0,2);
$Pass = crypt($PASSWORD,$salt);
if ($Pass == $cryptedpass) {
return 1;
} else {
return -1;
}
}
?>
相关文章
- 哈利波特魔法觉醒角驼兽之灾攻略 角驼兽之灾10星攻略 07-19
- 哈利波特我也许会被除掉武器然后被倒挂起来线索位置 07-19
- 怎么挖矿莱特币 07-19
- 哈利波特魔法觉醒海格厉火卡组推荐 海格厉火卡组4500分攻略 07-19
- 哈利波特我可以把我的身家性命托付给他线索位置介绍 07-19
- 哈利波特魔法觉醒禁林手记怎么解锁?禁林手记解锁攻略 07-19