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_j2store /
controllers /
Delete
Unzip
Name
Size
Permission
Date
Action
callback.php
1.34
KB
-rwxr-xr-x
2022-02-20 10:42
carts.php
13.66
KB
-rwxr-xr-x
2022-02-20 10:42
checkouts.php
63.21
KB
-rwxr-xr-x
2022-02-20 10:42
index.html
249
B
-rwxr-xr-x
2022-02-20 10:42
myprofile.php
18.6
KB
-rwxr-xr-x
2022-02-20 10:42
products.php
30.92
KB
-rwxr-xr-x
2022-02-20 10:42
producttags.php
25.69
KB
-rwxr-xr-x
2022-02-20 10:42
Save
Rename
<?php /*------------------------------------------------------------------------ # com_j2store - J2Store # ------------------------------------------------------------------------ # author Ramesh Elamathi - Weblogicx India http://www.weblogicxindia.com # copyright Copyright (C) 2014 - 19 Weblogicxindia.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://j2store.org # Technical Support: Forum - http://j2store.org/forum/index.html -------------------------------------------------------------------------*/ /** ensure this file is being included by a parent file */ defined('_JEXEC') or die('Restricted access'); class J2StoreControllerCallback extends F0FController { protected $cacheableTasks = array(); function __construct() { $config['csrfProtection'] = 0; parent::__construct($config); $this->cacheableTasks = array(); } function execute($task) { $this->read(); } function read() { // Makes sure SiteGround's SuperCache doesn't cache the subscription page J2Store::utilities()->nocache(); $app = JFactory::getApplication(); $app->setHeader('X-Cache-Control', 'False', true); $method = $app->input->getCmd('method', 'none'); $model = $this->getModel('Callback'); $result = $model->runCallback($method); echo $result ? 'OK' : 'FAILED'; $app->close(); } }