分类 PHP 下的文章

PHP生成随机密码

使用PHP生成16位随机密码,要求必需同时包含大写字母、小写字母、数字、特殊符号,且第一位必需大写

<?php
function generatePassword() {
    // 定义字符集
    $uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $lowercase = 'abcdefghijklmnopqrstuvwxyz';
    $numbers = '0123456789';
    $specialChars = '!@#$%^&*()_+-=[]{}|;:,.<>?';

    // 确保每种字符至少出现一次
    $password = $uppercase[random_int(0, strlen($uppercase) - 1)]; // 第一位是大写字母
    $password .= $lowercase[random_int(0, strlen($lowercase) - 1)]; // 第二位是小写字母
    $password .= $numbers[random_int(0, strlen($numbers) - 1)]; // 第三位是数字
    $password .= $specialChars[random_int(0, strlen($specialChars) - 1)]; // 第四位是特殊符号

    // 剩余的12位随机字符
    $allChars = $uppercase . $lowercase . $numbers . $specialChars;
    for ($i = 4; $i < 16; $i++) {
        $password .= $allChars[random_int(0, strlen($allChars) - 1)];
    }

    // 将密码转换为数组,方便操作
    $passwordArray = str_split($password);

    // 打乱除第一位之外的字符
    $shuffledPart = array_slice($passwordArray, 1);
    shuffle($shuffledPart);

    // 重新组合密码,确保第一位是大写字母
    $password = $passwordArray[0] . implode('', $shuffledPart);

    return $password;
}

// 生成并输出密码
echo generatePassword();
?>

Linux安装SourceGuardian loader(SG11组件)

SourceGuardian提供php源码文件的加密,而SourceGuardian loader则是提供运行这些加密php文件的php扩展。
一、访问https://www.sourceguardian.com/loaders/download.php
输入服务器上phpinfo函数的php文件地址,如: https://www.2dan.cc/phpinfo.php
二、在线的检测脚本会根据phpinfo里的信息,提取到php的版本信息和扩展路径,并会提示接下来该怎么做。如:
1、下载什么文件ixed.7.4.lin
2、上传到服务器/usr/local/php/lib/php/extensions/no-debug-non-zts-20190902
3、编辑/usr/local/php/etc/php.ini 增加一行extension=ixed.7.4.lin
4、重启php进程

高端黑帽SEO之判断蜘蛛进行301跳转

<?php
if (preg_match("#(Baiduspider|Googlebot|Sogou web spider|YodaoBot|Sosospider|bingbot|Yahoo! Slurp|MSNBot)#si", $_SERVER['HTTP_USER_AGENT'])) {
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: https://www.2dan.cc/");
    exit;
}
?>

用户访问网站完全正常,搜索引擎蜘蛛 User Agent 就301跳转。这个不得不说很隐蔽,被搞了不容易发现。

PHP天数计算

<?PHP
//今天与2012年11月29日相差多少天
$Date_1=date("Y-m-d");
$Date_2="2012-11-29";
$d1=strtotime($Date_1);
$d2=strtotime($Date_2);
$Days=round(($d1-$d2)/3600/24);
Echo "宝宝出生已经".$Days."天";
Echo "<br>";

//今天到2013年11月29日还有多少天
$Date_1=date("Y-m-d");
$Date_2="2013-11-29";
$d1=strtotime($Date_1);
$d2=strtotime($Date_2);
$Days=round(($d2-$d1)/3600/24);
Echo "离宝宝生日还有".$Days."天";

?>

ini_set(

今天在查看messages日志文件时,发现存在大量的错误:

Jan  4 14:41:08 myhost suhosin[954]: ALERT - script tried to disable memory_limit by setting it to a negative value -1 bytes which is not allowed (attacker '110.75.173.*', file '/home/wwwroot/2dan.cc/index.php', line 5)

后来发现原因是:index.php文件中有这么一行:

// 取消内存限制
ini_set("memory_limit",'-1');

而php.ini中

memory_limit = 128M

解决方法:

  1. 删除index.php中的

    ini_set("memory_limit",'-1');

  2. 将二处的值改为相同。
  3. 卸载 suhosin
  4. 修改php.ini

    memory_limit = -1

不推荐4,原因是可能内存会被吃光。