腾讯TDSQL接口未授权访问信息泄露
CVE-2023-42387
漏洞地址: http://tdsql-xxxxxxx.com/tdsqlpcloud/index.php/api/install/get_db_info
漏洞描述: tdsql赤兔管理平台,api接口存在未授权返回数据库明文配置信息。
漏洞详情: 代码审计
1,访问上述接口。
2,得到明文账号密码,登录数据库。
漏洞版本: 赤免管理台 V1.8.9-1 bdffe65
修复建议:
class Install extends API_Controller{ public function __construct(){ parent::__construct(false); --修改为true } /**
获取数据库访问信息 @author kevenchen @type GET/POST @return string ip 数据库IP @return string port 数据库端口 @return string user 数据库账号 @return string pwd 数据库密码 @example {url} / public function get_db_info(){ – public修改为protect $this->config->load(‘database’); $dbconfs = $this->config->item(‘dbconfs’); $dbdefault = $this->config->item(‘dbdefault’); $conf = dbdefault]; $info = array( ‘ip’ => $conf[‘hostname’], ‘port’ => $conf[‘port’], ‘user’ => $conf[‘username’], ‘pwd’ => info); } /*
标签:info,访问信息,return,string,TDSQL,数据库,conf,2023,port From: https://blog.51cto.com/u_16289972/7741085