mirror of
https://github.com/flucont/btcloud.git
synced 2025-02-08 20:48:14 -05:00
update
This commit is contained in:
parent
1fc393c8e9
commit
5bd1670955
115
app/command/DecryptFile.php
Normal file
115
app/command/DecryptFile.php
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
<?php
|
||||||
|
declare (strict_types = 1);
|
||||||
|
|
||||||
|
namespace app\command;
|
||||||
|
|
||||||
|
use think\console\Command;
|
||||||
|
use think\console\Input;
|
||||||
|
use think\console\input\Argument;
|
||||||
|
use think\console\input\Option;
|
||||||
|
use think\console\Output;
|
||||||
|
use think\facade\Db;
|
||||||
|
use think\facade\Config;
|
||||||
|
use app\lib\Plugins;
|
||||||
|
|
||||||
|
class DecryptFile extends Command
|
||||||
|
{
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this->setName('decrypt')
|
||||||
|
->addArgument('type', Argument::REQUIRED, '文件类型,plugin:插件文件,module:模块文件,classdir:宝塔class目录,all:所有py文件')
|
||||||
|
->addArgument('file', Argument::REQUIRED, '文件路径')
|
||||||
|
->addArgument('os', Argument::OPTIONAL, '操作系统:Windows/Linux')
|
||||||
|
->setDescription('解密宝塔面板python文件');
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function execute(Input $input, Output $output)
|
||||||
|
{
|
||||||
|
$type = trim($input->getArgument('type'));
|
||||||
|
$file = trim($input->getArgument('file'));
|
||||||
|
|
||||||
|
if(!file_exists($file)){
|
||||||
|
$output->writeln('文件不存在');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($type == 'plugin'){
|
||||||
|
$os = trim($input->getArgument('os'));
|
||||||
|
try{
|
||||||
|
if(Plugins::decode_plugin_main_local($file, $os)){
|
||||||
|
$output->writeln('文件解密成功!');
|
||||||
|
}else{
|
||||||
|
$output->writeln('文件解密失败!');
|
||||||
|
}
|
||||||
|
}catch(\Exception $e){
|
||||||
|
$output->writeln($e->getMessage());
|
||||||
|
}
|
||||||
|
}elseif($type == 'module'){
|
||||||
|
try{
|
||||||
|
$res = Plugins::decode_module_file($file);
|
||||||
|
if($res == 2){
|
||||||
|
$output->writeln('文件解密失败!');
|
||||||
|
}elseif($res == 1){
|
||||||
|
$output->writeln('文件解密成功!');
|
||||||
|
}
|
||||||
|
}catch(\Exception $e){
|
||||||
|
$output->writeln($e->getMessage());
|
||||||
|
}
|
||||||
|
}elseif($type == 'classdir'){
|
||||||
|
$file = rtrim($file, '/');
|
||||||
|
if(!file_exists($file.'/common.py')){
|
||||||
|
$output->writeln('当前路径非宝塔面板class目录');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$dirs = glob($file.'/*Model');
|
||||||
|
foreach($dirs as $dir){
|
||||||
|
if(!is_dir($dir))continue;
|
||||||
|
$files = glob($dir.'/*Model.py');
|
||||||
|
foreach($files as $file){
|
||||||
|
try{
|
||||||
|
$res = Plugins::decode_module_file($file);
|
||||||
|
if($res == 2){
|
||||||
|
$output->writeln('文件解密失败:'.$file);
|
||||||
|
}elseif($res == 1){
|
||||||
|
$output->writeln('文件解密成功:'.$file);
|
||||||
|
}
|
||||||
|
}catch(\Exception $e){
|
||||||
|
$output->writeln($e->getMessage().':'.$file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}elseif($type == 'all'){
|
||||||
|
$file = rtrim($file, '/');
|
||||||
|
$this->scan_all_file($input, $output, $file);
|
||||||
|
}else{
|
||||||
|
$output->writeln('未知文件类型');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function scan_all_file(Input $input, Output $output, $path) {
|
||||||
|
$dir = opendir($path);
|
||||||
|
while(false !== ( $file = readdir($dir)) ) {
|
||||||
|
if (( $file != '.' ) && ( $file != '..' )) {
|
||||||
|
$filepath = $path . '/' . $file;
|
||||||
|
if ( is_dir($filepath) ) {
|
||||||
|
$this->scan_all_file($input, $output, $filepath);
|
||||||
|
}
|
||||||
|
elseif(substr($filepath, -3) == '.py') {
|
||||||
|
try{
|
||||||
|
$res = Plugins::decode_module_file($filepath);
|
||||||
|
if($res == 2){
|
||||||
|
$output->writeln('文件解密失败:'.$filepath);
|
||||||
|
}elseif($res == 1){
|
||||||
|
$output->writeln('文件解密成功:'.$filepath);
|
||||||
|
}
|
||||||
|
}catch(\Exception $e){
|
||||||
|
$output->writeln($e->getMessage().':'.$filepath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
closedir($dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -272,6 +272,12 @@ class Api extends BaseController
|
|||||||
return json($json_arr);
|
return json($json_arr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//获取宝塔SSL列表
|
||||||
|
public function get_ssl_list(){
|
||||||
|
$data = bin2hex('[]');
|
||||||
|
return json(['status'=>true, 'msg'=>'', 'data'=>$data]);
|
||||||
|
}
|
||||||
|
|
||||||
public function return_success(){
|
public function return_success(){
|
||||||
return json(['status'=>true, 'msg'=>1, 'data'=>(object)[]]);
|
return json(['status'=>true, 'msg'=>1, 'data'=>(object)[]]);
|
||||||
}
|
}
|
||||||
|
@ -187,6 +187,8 @@ class Plugins
|
|||||||
$userinfo = $btapi->get_user_info();
|
$userinfo = $btapi->get_user_info();
|
||||||
if(isset($userinfo['uid'])){
|
if(isset($userinfo['uid'])){
|
||||||
$src = file_get_contents($main_filepath);
|
$src = file_get_contents($main_filepath);
|
||||||
|
if($src===false)throw new Exception('文件打开失败');
|
||||||
|
if(!$src || strpos($src, 'import ')!==false)return true;
|
||||||
$uid = $userinfo['uid'];
|
$uid = $userinfo['uid'];
|
||||||
$serverid = $userinfo['serverid'];
|
$serverid = $userinfo['serverid'];
|
||||||
$key = md5(substr($serverid, 10, 16).$uid.$serverid);
|
$key = md5(substr($serverid, 10, 16).$uid.$serverid);
|
||||||
@ -202,7 +204,7 @@ class Plugins
|
|||||||
if($tmp) $de_text .= $tmp;
|
if($tmp) $de_text .= $tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!empty($de_text)){
|
if(!empty($de_text) && strpos($de_text, 'import ')!==false){
|
||||||
file_put_contents($main_filepath, $de_text);
|
file_put_contents($main_filepath, $de_text);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -212,6 +214,28 @@ class Plugins
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function decode_module_file($filepath){
|
||||||
|
$src = file_get_contents($filepath);
|
||||||
|
if($src===false)throw new Exception('文件打开失败');
|
||||||
|
if(!$src || strpos($src, 'import ')!==false)return 0;
|
||||||
|
$key = 'Z2B87NEAS2BkxTrh';
|
||||||
|
$iv = 'WwadH66EGWpeeTT6';
|
||||||
|
$data_arr = explode("\n", $src);
|
||||||
|
$de_text = '';
|
||||||
|
foreach($data_arr as $data){
|
||||||
|
$data = trim($data);
|
||||||
|
if(!empty($data)){
|
||||||
|
$tmp = openssl_decrypt($data, 'aes-128-cbc', $key, 0, $iv);
|
||||||
|
if($tmp) $de_text .= $tmp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!empty($de_text) && strpos($de_text, 'import ')!==false){
|
||||||
|
file_put_contents($filepath, $de_text);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
//去除插件主程序文件授权校验
|
//去除插件主程序文件授权校验
|
||||||
public static function noauth_plugin_main($main_filepath){
|
public static function noauth_plugin_main($main_filepath){
|
||||||
$data = file_get_contents($main_filepath);
|
$data = file_get_contents($main_filepath);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
Linux_Version="7.9.3"
|
Linux_Version="7.9.4"
|
||||||
Windows_Version="7.6.0"
|
Windows_Version="7.6.0"
|
||||||
|
|
||||||
FILES=(
|
FILES=(
|
||||||
|
@ -6,5 +6,6 @@ return [
|
|||||||
// 指令定义
|
// 指令定义
|
||||||
'commands' => [
|
'commands' => [
|
||||||
'updateall' => 'app\command\UpdateAll',
|
'updateall' => 'app\command\UpdateAll',
|
||||||
|
'decrypt' => 'app\command\DecryptFile',
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
0
data/plugins/folder/.gitkeep
Normal file
0
data/plugins/folder/.gitkeep
Normal file
0
data/plugins/main/.gitkeep
Normal file
0
data/plugins/main/.gitkeep
Normal file
0
data/plugins/other/other/.gitkeep
Normal file
0
data/plugins/other/other/.gitkeep
Normal file
0
data/plugins/package/.gitkeep
Normal file
0
data/plugins/package/.gitkeep
Normal file
0
data/win/plugins/folder/.gitkeep
Normal file
0
data/win/plugins/folder/.gitkeep
Normal file
0
data/win/plugins/main/.gitkeep
Normal file
0
data/win/plugins/main/.gitkeep
Normal file
0
data/win/plugins/package/.gitkeep
Normal file
0
data/win/plugins/package/.gitkeep
Normal file
@ -12,7 +12,7 @@ INSERT INTO `cloud_config` (`key`, `value`) VALUES
|
|||||||
('bt_key', ''),
|
('bt_key', ''),
|
||||||
('whitelist', '0'),
|
('whitelist', '0'),
|
||||||
('download_page', '1'),
|
('download_page', '1'),
|
||||||
('new_version', '7.9.3'),
|
('new_version', '7.9.4'),
|
||||||
('update_msg', '暂无更新日志'),
|
('update_msg', '暂无更新日志'),
|
||||||
('update_date', '2022-07-13'),
|
('update_date', '2022-07-13'),
|
||||||
('new_version_win', '7.6.0'),
|
('new_version_win', '7.6.0'),
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -42,7 +42,7 @@ download_Url=$NODE_URL
|
|||||||
setup_path=/www
|
setup_path=/www
|
||||||
version=$(curl -Ss --connect-timeout 5 -m 2 $Btapi_Url/api/panel/get_version)
|
version=$(curl -Ss --connect-timeout 5 -m 2 $Btapi_Url/api/panel/get_version)
|
||||||
if [ "$version" = '' ];then
|
if [ "$version" = '' ];then
|
||||||
version='7.9.3'
|
version='7.9.4'
|
||||||
fi
|
fi
|
||||||
armCheck=$(uname -m|grep arm)
|
armCheck=$(uname -m|grep arm)
|
||||||
if [ "${armCheck}" ];then
|
if [ "${armCheck}" ];then
|
||||||
|
@ -70,7 +70,7 @@ select_node(){
|
|||||||
get_version(){
|
get_version(){
|
||||||
version=$(curl -Ss --connect-timeout 5 -m 2 $Btapi_Url/api/panel/get_version)
|
version=$(curl -Ss --connect-timeout 5 -m 2 $Btapi_Url/api/panel/get_version)
|
||||||
if [ "$version" = '' ];then
|
if [ "$version" = '' ];then
|
||||||
version='7.9.3'
|
version='7.9.4'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Binary file not shown.
@ -36,6 +36,9 @@ Route::group('api', function () {
|
|||||||
Route::get('/getIpAddress', 'api/get_ip_address');
|
Route::get('/getIpAddress', 'api/get_ip_address');
|
||||||
Route::post('/Auth/GetAuthToken', 'api/get_auth_token');
|
Route::post('/Auth/GetAuthToken', 'api/get_auth_token');
|
||||||
Route::post('/Auth/GetBindCode', 'api/return_error');
|
Route::post('/Auth/GetBindCode', 'api/return_error');
|
||||||
|
Route::post('/Auth/GetSSLList', 'api/get_ssl_list');
|
||||||
|
Route::post('/Cert/get_order_list', 'api/return_empty_array');
|
||||||
|
Route::post('/Cert/get_product_list', 'api/return_success');
|
||||||
Route::get('/Pluginother/get_file', 'api/download_plugin_other');
|
Route::get('/Pluginother/get_file', 'api/download_plugin_other');
|
||||||
|
|
||||||
Route::post('/Pluginother/create_order', 'api/return_error');
|
Route::post('/Pluginother/create_order', 'api/return_error');
|
||||||
|
@ -36,6 +36,7 @@ def get_auth_state():
|
|||||||
#执行插件方法(插件名,方法名,参数)
|
#执行插件方法(插件名,方法名,参数)
|
||||||
def plugin_run(plugin_name, def_name, args):
|
def plugin_run(plugin_name, def_name, args):
|
||||||
if not plugin_name or not def_name: return public.returnMsg(False,'插件名称和插件方法名称不能为空!')
|
if not plugin_name or not def_name: return public.returnMsg(False,'插件名称和插件方法名称不能为空!')
|
||||||
|
if not path_check(plugin_name) or not path_check(def_name): return public.returnMsg(False,'插件名或方法名不能包含特殊符号!')
|
||||||
p_path = public.get_plugin_path(plugin_name)
|
p_path = public.get_plugin_path(plugin_name)
|
||||||
if not os.path.exists(p_path + '/index.php') and not os.path.exists(p_path + '/%s_main.py' % plugin_name): return public.returnMsg(False,'插件不存在!')
|
if not os.path.exists(p_path + '/index.php') and not os.path.exists(p_path + '/%s_main.py' % plugin_name): return public.returnMsg(False,'插件不存在!')
|
||||||
|
|
||||||
@ -73,10 +74,19 @@ def plugin_run(plugin_name, def_name, args):
|
|||||||
#执行模块方法(模块名,方法名,参数)
|
#执行模块方法(模块名,方法名,参数)
|
||||||
def module_run(mod_name, def_name, args):
|
def module_run(mod_name, def_name, args):
|
||||||
if not mod_name or not def_name: return public.returnMsg(False,'模块名称和模块方法名称不能为空!')
|
if not mod_name or not def_name: return public.returnMsg(False,'模块名称和模块方法名称不能为空!')
|
||||||
|
if not path_check(mod_name) or not path_check(def_name): return public.returnMsg(False,'模块名或方法名不能包含特殊符号!')
|
||||||
|
|
||||||
|
if 'model_index' in args:
|
||||||
|
if args.model_index:
|
||||||
|
mod_file = "{}/{}Model/{}Model.py".format(public.get_class_path(),args.model_index,mod_name)
|
||||||
|
else:
|
||||||
mod_file = "{}/projectModel/{}Model.py".format(public.get_class_path(),mod_name)
|
mod_file = "{}/projectModel/{}Model.py".format(public.get_class_path(),mod_name)
|
||||||
if not os.path.exists(mod_file):
|
else:
|
||||||
mod_file = "{}/databaseModel/{}Model.py".format(public.get_class_path(),mod_name)
|
module_list = get_module_list()
|
||||||
|
for module_dir in module_list:
|
||||||
|
mod_file = "{}/{}/{}Model.py".format(public.get_class_path(),module_dir,mod_name)
|
||||||
|
if os.path.exists(mod_file): break
|
||||||
|
|
||||||
if not os.path.exists(mod_file):
|
if not os.path.exists(mod_file):
|
||||||
return public.returnMsg(False,'模块[%s]不存在' % mod_name)
|
return public.returnMsg(False,'模块[%s]不存在' % mod_name)
|
||||||
|
|
||||||
@ -92,3 +102,21 @@ def module_run(mod_name, def_name, args):
|
|||||||
result = run_object(args)
|
result = run_object(args)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
#获取模块文件夹列表
|
||||||
|
def get_module_list():
|
||||||
|
list = []
|
||||||
|
class_path = public.get_class_path()
|
||||||
|
f_list = os.listdir(class_path)
|
||||||
|
for fname in f_list:
|
||||||
|
f_path = class_path+'/'+fname
|
||||||
|
if os.path.isdir(f_path) and len(fname) > 6 and fname.find('.') == -1 and fname.find('Model') != -1:
|
||||||
|
list.append(fname)
|
||||||
|
return list
|
||||||
|
|
||||||
|
#检查路径是否合法
|
||||||
|
def path_check(path):
|
||||||
|
list = ["./","..",",",";",":","?","'","\"","<",">","|","\\","\n","\r","\t","\b","\a","\f","\v","*","%","&","$","#","@","!","~","`","^","(",")","+","=","{","}","[","]"]
|
||||||
|
for i in path:
|
||||||
|
if i in list:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
@ -40,8 +40,9 @@ if("undefined" != typeof bt && bt.hasOwnProperty("prompt_confirm")){
|
|||||||
}
|
}
|
||||||
if("undefined" != typeof database && database.hasOwnProperty("del_database")){
|
if("undefined" != typeof database && database.hasOwnProperty("del_database")){
|
||||||
database.del_database = function (wid, dbname,obj, callback) {
|
database.del_database = function (wid, dbname,obj, callback) {
|
||||||
|
var type = $('.database-pos .tabs-item.active').data('type')
|
||||||
title = '',
|
title = '',
|
||||||
tips = '是否确认【删除数据库】,删除后可能会影响业务使用!';
|
tips = '是否确认【删除数据库】,'+ (type !== 'mysql'?'当前数据库暂不支持数据库回收站,删除后将无法恢复,请谨慎操作':',删除后可能会影响业务使用!');
|
||||||
if(obj && obj.db_type > 0) tips = '远程数据库不支持数据库回收站,删除后将无法恢复,请谨慎操作';
|
if(obj && obj.db_type > 0) tips = '远程数据库不支持数据库回收站,删除后将无法恢复,请谨慎操作';
|
||||||
var title = typeof dbname === "function" ?'批量删除数据库':'删除数据库 [ '+ dbname +' ]';
|
var title = typeof dbname === "function" ?'批量删除数据库':'删除数据库 [ '+ dbname +' ]';
|
||||||
layer.open({
|
layer.open({
|
||||||
@ -157,7 +158,10 @@ if("undefined" != typeof bt && bt.hasOwnProperty("firewall") && bt.firewall.hasO
|
|||||||
if (port.indexOf('-') != -1) ports = port.split('-');
|
if (port.indexOf('-') != -1) ports = port.split('-');
|
||||||
for (var i = 0; i < ports.length; i++) {
|
for (var i = 0; i < ports.length; i++) {
|
||||||
if (!bt.check_port(ports[i])) {
|
if (!bt.check_port(ports[i])) {
|
||||||
layer.msg(lan.firewall.port_err, { icon: 5 });
|
layer.msg('可用端口范围:1-65535', { icon: 2 });
|
||||||
|
// layer.msg(lan.firewall.port_err, {
|
||||||
|
// icon: 5
|
||||||
|
// });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,9 +10,11 @@
|
|||||||
|
|
||||||
- 将PluginLoader.py复制到class文件夹
|
- 将PluginLoader.py复制到class文件夹
|
||||||
|
|
||||||
|
- 批量解密模块文件:执行 php think decrypt classdir <面板class文件夹路径>
|
||||||
|
|
||||||
- 全局搜索替换 https://api.bt.cn => http://www.example.com
|
- 全局搜索替换 https://api.bt.cn => http://www.example.com
|
||||||
|
|
||||||
- 全局搜索替换 https://www.bt.cn/api/ => http://www.example.com/api/(需排除clearModel.py)
|
- 全局搜索替换 https://www.bt.cn/api/ => http://www.example.com/api/(需排除clearModel.py、ipsModel.py)
|
||||||
|
|
||||||
- 全局搜索替换 http://download.bt.cn/install/update6.sh => http://www.example.com/install/update6.sh
|
- 全局搜索替换 http://download.bt.cn/install/update6.sh => http://www.example.com/install/update6.sh
|
||||||
|
|
||||||
@ -40,6 +42,8 @@
|
|||||||
|
|
||||||
- class/panelPlugin.py 文件,download_icon方法内替换 public.GetConfigValue('home') => 'https://www.bt.cn'
|
- class/panelPlugin.py 文件,download_icon方法内替换 public.GetConfigValue('home') => 'https://www.bt.cn'
|
||||||
|
|
||||||
|
- class/panelPlugin.py 文件,删除public.total_keyword(get.query)这一行
|
||||||
|
|
||||||
- class/panelPlugin.py 文件,set_pyenv方法内,temp_file = public.readFile(filename)这行代码下面加上
|
- class/panelPlugin.py 文件,set_pyenv方法内,temp_file = public.readFile(filename)这行代码下面加上
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@ -61,16 +65,12 @@
|
|||||||
|
|
||||||
"update_software_list": update_software_list,
|
"update_software_list": update_software_list,
|
||||||
|
|
||||||
"check_files_panel": check_files_panel,
|
|
||||||
|
|
||||||
"check_panel_msg": check_panel_msg,
|
"check_panel_msg": check_panel_msg,
|
||||||
|
|
||||||
- 去除面板日志上报:script/site_task.py 文件
|
|
||||||
|
|
||||||
删除最下面 logs_analysis() 这1行
|
|
||||||
|
|
||||||
- 去除首页广告:BTPanel/static/js/index.js 文件删除最下面index.recommend_paid_version()这一行
|
- 去除首页广告:BTPanel/static/js/index.js 文件删除最下面index.recommend_paid_version()这一行
|
||||||
|
|
||||||
|
- 去除内页广告:BTPanel/templates/default/layout.html 删除getPaymentStatus();这一行
|
||||||
|
|
||||||
- 去除首页自动检测更新,避免频繁请求云端:BTPanel/static/js/index.js 文件注释掉bt.system.check_update这一段代码外的setTimeout
|
- 去除首页自动检测更新,避免频繁请求云端:BTPanel/static/js/index.js 文件注释掉bt.system.check_update这一段代码外的setTimeout
|
||||||
|
|
||||||
- [可选]去除各种计算题:复制bt.js到 BTPanel/static/ ,在 BTPanel/templates/default/layout.html 的\</body\>前面加入
|
- [可选]去除各种计算题:复制bt.js到 BTPanel/static/ ,在 BTPanel/templates/default/layout.html 的\</body\>前面加入
|
||||||
|
Loading…
Reference in New Issue
Block a user