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中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01