最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
用户口令检查(/etc/passwd)
时间:2022-07-02 09:17:19 编辑:袖梨 来源:一聚教程网
/*
* 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
*/
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;
}
}
?>
相关文章
- 诛仙2海中寻人奇遇在哪 海中寻人东海奇遇完成方法 08-28
- 龙魂旅人最大攻击是什么 最大攻击详解 08-28
- 四海兄弟故乡马匹怎么获取 马匹获取方法分享 08-28
- 诛仙2荒池幽魂奇遇怎么做 荒池幽魂东海奇遇收集 08-28
- 龙魂旅人多出来的碎片怎么处理 碎片处理方法一览 08-28
- 四海兄弟故乡圣维托在哪拿 圣维托获取方法分享 08-28