当前位置:网站首页 > 技术教程 > 正文

一键干掉宝塔的强制登陆

作者:熊猫畔日期:2020-09-26 23:26:42分类:技术教程

先安装宝塔,如果登陆啥事都没有那最好
如果提示必须要登陆宝塔账户
那么,在SSH里执行

sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
2021年03月19更新下列代码
echo "True" > /www/server/panel/data/licenes.pl
echo "True" > /www/server/panel/data/not_recommend.pl
echo "True" > /www/server/panel/data/not_workorder.pl
rm -rf /www/server/panel/data/bind.pl

完工
同理,如果要还原

sed -i "s|if (bind_user == 'REMOVED') {|if (bind_user == 'True') {|g" /www/server/panel/BTPanel/static/js/index.js