最新下载
热门教程
- 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;
}
}
?>
相关文章
- 微博网页版直达入口-微博网页版快捷登录入口 02-14
- 拍照搜题网页版直达-夸克AI搜题官网入口直通 02-14
- mcjs我的世界网页版直通-mcjs在线版点击畅玩免下载 02-14
- 歪歪漫画秋蝉极速入口-秋蝉漫画土豪版全网首发网址 02-14
- 尾巴漫画免费看最新地址分享:全网热门漫画在线同步更新 02-14
- b站视频播放软件推荐-b站视频播放软件哪款更好 02-14