allow_url_fopen Enabled

Description

This vulnerability was detected using the information from phpinfo() page.
When the “allow_url_fopen” option is enabled, it is possible to retrieve data from remote places such as servers for uploading files (FTP) or websites.
If we add it to poor input filtering, it might lead to possible code injection vulnerabilities.

Based on the application, it is possible that we will be exposed to remote file inclusion vulnerabilities, this may have several different consequences, some examples are :

  • Injection of malicious malwares.
  • Information exposure by granting excessive privileges or permissions to the untrusted sources or functions.
  • Stealing user’s saved session data (Cookies).

Recommendation

Disable the “allow_url_fopen” option, from php.ini or .htaccess :

  • For php.ini : allow_url_fopen = ‘off’
  • For .htaccess : php_flag allow_url_fopen off

References

https://www.php.net/manual/en/filesystem.configuration.php

https://cwe.mitre.org/data/definitions/829.html

< Return to all Vulnerabilities

Explaining API

We’ve talked about API’s Vulnerability in here, but i feel like there’s much more to talk about and explain since this is a big and

Read More »