更新7.7版本(2024-04-15)伪站文件,搭建方法没变
🔒 此处内容需要 登录 才能查看。
7.7主题文件:
🔒 此处内容需要 登录 才能查看。
7.6 版本(2024-02-01)绕过授权
7.6原版主题:
🔒 此处内容需要 登录 才能查看。
伪站搭建 (以apache2为例)
1.www下新建zibll目录, 添加index.php文件:
🔒 此处内容需要 登录 才能查看。
2.添加伪静态.htaccess文件:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
3.添加VirtualHost:
nano /etc/apache2/sites-enabled/000-default.conf
## 添加api.zibll.com
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName api.zibll.com
DocumentRoot /var/www/zibll
ErrorLog ${APACHE_LOG_DIR}/error.log
#CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
nano /etc/apache2/sites-enabled/
4.添加HTTPS,SSL用自签证书:
cd /etc/apache2/ssl
# 私钥文件
openssl genrsa -out private.key 2048
## 证书请求文件 默认回车即可
openssl req -new -key private.key -out server.csr
## 自签名证书
openssl x509 -req -days 365 -in server.csr -signkey private.key -out server.crt
cat server.crt private.key > server.pem
nano /etc/apache2/sites-enabled/default-ssl.conf
## 添加api.zibll.com
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName api.zibll.com
DocumentRoot /var/www/zibll
LogLevel error
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/server.crt
SSLCertificateKeyFile /etc/apache2/ssl/private.key
</VirtualHost>
BT搭建伪授权站
1.创建api.zibll.com网站,将上面index.php添加到网站目录
2.网站设置->SSL添加自签证书private.key和server.pem
3.添加伪静态
4.伪静态代码
location / {
try_files $uri $uri/ /index.php?$query_string;
}
5.修改hosts:
nano /etc/hosts
# 添加
127.0.0.1 api.zibll.com
service apache2 restart
6.登录后台,点击授权
评论 (0)