Hi,
You currently use fopen to check for new versions:
# library/ViMbAdmin/Version.php
$handle = fopen( 'http://www.opensolutions.ie/open-source/vimbadmin/latest-v3', 'r' );
We recently had an attack through this very function last week, on another server, and had to switch off allow_url_fopen in php.ini
Would it be possible to check the latest version using another way?
Hi,
You currently use fopen to check for new versions:
We recently had an attack through this very function last week, on another server, and had to switch off allow_url_fopen in php.ini
Would it be possible to check the latest version using another way?