如何接受编程代码输入以进行显示?
在 PHP 中接受用户输入的编程代码、将其存储在数据库中并使用 HTML pre 标记将其显示回来的最安全方法是什么?
我目前将输入转换为 HTML 实体,但我认为这不会那么容易......
有什么建议吗?
What is the safest way to accept user inputted programming code in PHP, store it in database and display it back with the HTML pre tag?
I currently convert the input to HTML entities, but I somehow think it wouldn't be that easy...
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编程代码只是文本;如果不执行,就不会有任何伤害。
这意味着您需要关注:
保护您的数据库免遭 SQL 注入。这可以通过转义输入字符串 (
mysql_real_escape_string()
) 或使用准备好的语句来完成。保护您的用户免受 XSS 侵害。这可以通过将代码转换为 html 实体来完成(即:使用
htmlspecialchars()
),因此潜在的恶意标签(即:)会转换为文本(例如:
<script>
)。Programming code is just text; if it's not executed there can't be any harm done.
This means you need to be concerned about:
Protecting your database from SQL injection. This can be done by escaping the input string (
mysql_real_escape_string()
) or using prepared statements.Protecting your users from XSS. This can be done by converting your code to html entities (ie: using
htmlspecialchars()
), so potentially malicious tags (ie:<script>
) get converted to text (eg:<script>
).