I just noticed a couple of IPs had been inserted into my Admin Tools Administrator Whitelist IPsection.
It seems that these are something to do with Perfect Dashboard. There is also a folder that has appeared,
/perfectdashboard_backup_oD8Oz/
Are these anything to do with Admintools, looking at the php file, it shows the below code..;
Which seems to imply is is something to do with Akeeba. I cant seem to find anything in the Akeeba updates about this software. Or why it would need to add entries to the administrator white listlist ?
/**
* Akeeba Restore
* A JSON-powered JPA, JPS and ZIP archive extraction library
*
* @copyright 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd.
* @license GNU GPL v2 or - at your option - any later version
* @package akeebabackup
* @subpackage kickstart
*/
/**
* Perfect Dashboard override
* Don't initialize static variables inside of a method , because when other class extends it,
* it will probably break some zend opcache interpreter.
*
* example of this problem.
* class a
* {
* public function b()
* {
* static $c;
* }
* }
* class b extends a {}