Does phpMyAdmin pose security risk on production(phpMyAdmin 是否会对生产造成安全风险)
问题描述
我使用的 VPS 曾经有 phpMyAdmin 预安装选项,但删除了它,指出它会带来安全风险.是吗?
The VPS I was using used to have phpMyAdmin pre-installation option but removed it stating it poses security risk. Does it?
如果是这样,您是否推荐在生产中浏览数据库的替代方法(除了在控制台中运行 SQL 命令)?
If so do you recommend an alternative for browsing DB on production (other than running SQL commands in console)?
推荐答案
您添加到系统中的任何额外软件都会增加复杂性.复杂性是安全的敌人.
Any extra software you add to a system adds complexity. Complexity is the enemy of security.
PHP 网络应用程序以草率编码而臭名昭著,当然 phpMyAdmin 已经超过其份额的安全漏洞 过去.您当然可以通过例如减轻损害.将 HTTPS 与客户端证书放在一起,但这并不能阻止跨站点请求伪造攻击.
PHP webapps are notorious for sloppy coding and certainly phpMyAdmin has had more than its share of security holes in the past. You can certainly mitigate the damage by eg. putting behind HTTPS with a client certificate, but that's not going to prevent cross-site-request-forgery attacks.
对于生产机器,我真的更喜欢使用控制台.
For a production machine, I'd really prefer to stick to the console.
这篇关于phpMyAdmin 是否会对生产造成安全风险的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpMyAdmin 是否会对生产造成安全风险


基础教程推荐
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01