Linux安装httpd及php、PHP探针
安装Apahce及php 安装 yum -y install httpd php 启动httpd service httpd start 修改端口号 vi /etc/httpd/conf/httpd.conf 修改 Listen 80 iptables打开对应端口 iptables -I INPUT -p tcp --dport 端口 -j ACCEPT service iptables save service iptables restart 如果启动httpd时,报错 Could not reliably determine the server's fully qualified domain name, using ::1 for ServerName 则需要修改 httpd.conf ServerName 127.0.0.1:976 大概在第276行. 参考:快速搭建一个网站 https://wxlzmt.github.io/pages/simple/md_trans.html?url=https://raw.githubusercontent.com/wxlzmt/wxlzmt.github.io/master/resource/script/quick-start-httpd.md robots.txt https://raw.githubusercontent.com/wxlzmt/wxlzmt.github.io/master/resource/script/robots.txt 生成伪装站点 wget https://raw.githubusercontent.com/wxlzmt/bigfiles/master/jdk1.8-api.zip unzip -n jdk1.8-api.zip -d /var/www/html 下载探针 wget http://www.yahei.net/tz/tz.zip 其实就是一个php文件,备用下载: wget https://wxlzmt.github.io/resource/script/tz.php 放到 /var/www/html/tz.php 就可以了 访问 http://ip:port/tz.php 即可. 小内存优化 先查看ap...