Prometheus涉及pprof go信息泄露漏洞整改
本文记录一下对系统渗透测试后反馈Prometheus涉及pprof go信息泄露,验证方法为http://ip:port/debug/pprof。为防止未经授权用户访问,现决定在Prometheus层面使用basic_auth加密整改。
环境配置
软件 | 版本 |
---|---|
Kylin | V10 |
Docker | 20.10.22 |
Prometheus | 2.19.0 |
1.生成basic_auth密钥
安装工具包并生成加密后密码
#安装工具包
yum install -y httpd-tools
#生成加密密码
htpasswd -nBC 12 '' | tr -d ':\n'
New password: # 这里设置密码为Prometheus,实际使用请按照自己的集群需求定义密码
Re-type new password:
#生成的密码信息
$2y$12$SiMWc.Avsx4BE59PT88GcefVkJGBYduzMP5kXeV2EyDxgKvODGhBW
2.将密钥文件写入config.yml文件内
新建配置文件(暂时不使用TLS,使用TLS加密后Grafana获取不到数据,还需修改数据源配置)
cat > /usr/prometheus/config.yml<<EOF
basic_auth_users:
# 当前设置的用户名为admin, 可以设置多个
admin: $2y$12$SiMWc.Avsx4BE59PT88GcefVkJGBYduzMP5kXeV2EyDxgKvODGhBW
EOF
3.修改prometheus配置
新增basic_auth配置
scrape_configs:
- job_name: 'prometheus'
basic_auth:
username: admin
password: prometheus
static_configs:
- targets: ['prometheus:9090']
4.启动服务
4.1 service模式
修改/usr/lib/systemd/system/prometheus.service文件,在ExecStart后面追加-web.config.file=/usr/prometheus/config.yml
4.2 docker模式
修改镜像版本(≥2.40),在服务启动脚本命令内增加 --web.config.file配置文章来源:https://www.toymoban.com/news/detail-784973.html
docker run -d --restart=unless-stopped --name=prometheus -p 9090:9090 -v /usr/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml -v /usr/prometheus/config.yml:/etc/prometheus/config.yml prom/prometheus:v2.24.0 --config.file=/etc/prometheus/prometheus.yml --web.config.file=/etc/prometheus/config.yml
5.访问测试
返回Unauthorized即整改完成文章来源地址https://www.toymoban.com/news/detail-784973.html
[root@localhost ~]# curl http://127.0.0.1:9090/debug/pprof/
Unauthorized
到了这里,关于prometheus涉及pprof go信息泄露漏洞整改的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!