在cgi-bin中运行python的安全注意事项
我一直在编写在本地运行的 python 脚本。我现在想使用这些 python 脚本之一提供在线服务,并且通过我拥有的虚拟主机,我可以在 cgi-bin 中运行 python。
python 脚本从用户填写的 html 表单中获取输入,拥有凭据并与本地数据库连接,使用 python 库计算内容,并将结果作为 HTML 发送出去以进行显示。
我想知道的是我应该采取哪些安全预防措施。我担心的是:
- 通过网络调用的脚本的正确文件权限是什么? 755?
- 我正在接受用户输入。我如何保证它已被消毒?
- 我在脚本中有数据库的用户/密码。如何防止脚本被下载和代码被看到?
- 我可以安装该文件旁边的其他库吗?我是否还需要担心这些的安全性?我是否将他们的权限设置为700?第744章
- 还有其他我不知道的漏洞吗?
I've been writing python scripts that run locally. I would now like to offer a service online using one of these python scripts and through the webhosting I have I can run python in the cgi-bin.
The python script takes input from an html form filled in by the user, has the credentials and connects with a local database, calculates stuff using python libraries and sends out the results as HTML to be displayed.
What I would like to know is what security precautions I should take. Here are my worries:
- What are the right file permissions for scripts called via web? 755?
- I am taking user input. How do I guarantee it is sanitized?
- I have user/pass for the database in the script. How do I prevent the script from being downloaded and the code seen?
- Can I install the other libraries next to the file? Do I have to worry about security of/in these as well? Do I set their permissions to 700? 744?
- Any other vulnerability I am unaware of?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 owasp.org - 您现在正在编写一个 Web 应用程序,并且您需要担心 Web 应用程序需要担心的一切。该列表太长且复杂,无法放在这里,但 owasp 是一个很好的起点。
check out owasp.org - you're now writing a web application, and you need to worry about everything web apps need to worry about. The list is too long and complicated to place here, but owasp is a good starting point.
使用 mod_wsgi 以便您的脚本不会作为脚本运行,而是作为 WSGI 应用程序下的函数运行。
使用 Django 这样的框架。
使用 Django 这样的框架。
是的。
是的。
它们必须是可读的。就这样。但是,如果您使用 mod_wsgi,生活会更简单。如果您使用框架,那就更简单了。
吨。请参阅 http://www.owasp.org 网站。
另外,请使用框架。请不要自己重新发明一切。人们已经解决了所有这些问题。
Use mod_wsgi so that your scripts are not run as scripts but as functions under a WSGI application.
Use a framework like Django.
Use a framework like Django.
Yes.
Yes.
They must be readable. That's all. However, if you use mod_wsgi, life is simpler. If you use a framework, simpler still.
Tons. Please see the http://www.owasp.org site.
Also, please use a framework. Please don't reinvent everything yourself. Folks have already solved all of these problems.