php 文件公共写入风险
我有一个文件,我必须将其设置为公共读取和公共写入才能工作。在下面两种文件类型下,将其设置为“公共写入”有什么风险?
1 - 它是一个文本文件 (.txt)
2 - 它是一个 php 文件 (.php)
黑客可以造成一些损害吗?
I have a file, I have to set it to public read and public write to work. Under the two filetypes below, what are the risks of having it set to "public write"?
1 - Its a text file (.txt)
2 - Its a php file (.php)
Can the hackers do some damage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 文件
如果
那么灾难即将发生。尽量不要问可以做什么。
文本文件
如果它是常规的 apache 设置,那么它是相当安全的。
PHP file
If php file is
then it's a disaster waiting to happen. Try not to ask what may be done.
Text file
If it's a regular apache setup it's rather safe.