Why is not secure allow to access to resources with URIs like “http://example.com/badcode.txt“?
What means non-file-based?
i’m reading this PHP security check list:
http://www.sk89q.com/2009/08/definitive-php-security-checklist/
thx
^_^
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You must mean allow_url_fopen. Honestly, I don’t think there’s any valid security reason to disallow this.
allow_url_include is an option that it’s better to have disabled, in case you have an error in your scripts that uses user input to build a path of an include path. Honestly, that shouldn’t be done ever, but the settings can mitigate some damage (it won’t hurt).