Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
components /
com_content /
helpers /
Delete
Unzip
Name
Size
Permission
Date
Action
association.php
3.01
KB
-rw-r--r--
2017-11-07 06:31
category.php
649
B
-rw-r--r--
2017-11-07 06:31
icon.php
7.33
KB
-rw-r--r--
2017-11-07 06:31
legacyrouter.php
9.83
KB
-rw-r--r--
2017-11-07 06:31
query.php
6.74
KB
-rw-r--r--
2017-11-07 06:31
route.php
1.87
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Site * @subpackage com_content * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Content Component Route Helper. * * @since 1.5 */ abstract class ContentHelperRoute { /** * Get the article route. * * @param integer $id The route of the content item. * @param integer $catid The category ID. * @param integer $language The language code. * * @return string The article route. * * @since 1.5 */ public static function getArticleRoute($id, $catid = 0, $language = 0) { // Create the link $link = 'index.php?option=com_content&view=article&id=' . $id; if ((int) $catid > 1) { $link .= '&catid=' . $catid; } if ($language && $language !== '*' && JLanguageMultilang::isEnabled()) { $link .= '&lang=' . $language; } return $link; } /** * Get the category route. * * @param integer $catid The category ID. * @param integer $language The language code. * * @return string The article route. * * @since 1.5 */ public static function getCategoryRoute($catid, $language = 0) { if ($catid instanceof JCategoryNode) { $id = $catid->id; } else { $id = (int) $catid; } if ($id < 1) { $link = ''; } else { $link = 'index.php?option=com_content&view=category&id=' . $id; if ($language && $language !== '*' && JLanguageMultilang::isEnabled()) { $link .= '&lang=' . $language; } } return $link; } /** * Get the form route. * * @param integer $id The form ID. * * @return string The article route. * * @since 1.5 */ public static function getFormRoute($id) { return 'index.php?option=com_content&task=article.edit&a_id=' . (int) $id; } }