/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app/Solo/Controller
NameSizeModeActions
Backup.php57280644editdlrm
Browser.php6490644editdlrm
Configuration.php88530644editdlrm
ControllerDefault.php34990644editdlrm
DataControllerDefault.php28810644editdlrm
Dbfilters.php14310644editdlrm
Errortest.php5340644editdlrm
Fsfilters.php14310644editdlrm
Ftpbrowser.php17070644editdlrm
Log.php34670644editdlrm
Main.php93930644editdlrm
Manage.php124140644editdlrm
Oauth2.php40860644editdlrm
Phpinfo.php4000644editdlrm
Profiles.php27610644editdlrm
Sftpbrowser.php17890644editdlrm
Sysconfig.php34040644editdlrm
Update.php18910644editdlrm
Wizard.php23860644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app/Solo/Controller/Ftpbrowser.php (1707B)
noFlush = $this->container->appConfig->get('no_flush', 0); } public function execute($task) { // If we are running inside a CMS but there is no active user we have to throw a 403 $inCMS = $this->container->segment->get('insideCMS', false); if ($inCMS && !$this->container->userManager->getUser()->getId()) { return false; } return parent::execute($task); } public function main() { /** @var \Solo\Model\Ftpbrowser $model */ $model = $this->getModel(); // Grab the data and push them to the model $model->setState('host', $this->input->getString('host', '')); $model->setState('port', $this->input->getInt('port', 21)); $model->setState('passive', $this->input->getInt('passive', 1)); $model->setState('ssl', $this->input->getInt('ssl', 0)); $model->setState('username', $this->input->getRaw('username', '')); $model->setState('password', $this->input->getRaw('password', '')); $model->setState('directory', $this->input->getRaw('directory', '')); $ret = $model->doBrowse(); @ob_end_clean(); echo '#"\#\"#'.json_encode($ret).'#"\#\"#'; if (!$this->noFlush) { flush(); } $this->container->application->close(); } }