Linux webm008.cluster106.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.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
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 /
associattd /
www-old /
libraries /
joomla /
feed /
[ HOME SHELL ]
Name
Size
Permission
Action
parser
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
entry.php
6.77
KB
-rw-r--r--
factory.php
3.72
KB
-rw-r--r--
feed.php
7.89
KB
-rw-r--r--
link.php
1.91
KB
-rw-r--r--
parser.php
6.37
KB
-rw-r--r--
person.php
1.16
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : link.php
<?php /** * @package Joomla.Platform * @subpackage Feed * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Feed Link class. * * @since 12.3 */ class JFeedLink { /** * The URI to the linked resource. * * @var string * @since 12.3 */ public $uri; /** * The relationship between the feed and the linked resource. * * @var string * @since 12.3 */ public $relation; /** * The resource type. * * @var string * @since 12.3 */ public $type; /** * The language of the resource found at the given URI. * * @var string * @since 12.3 */ public $language; /** * The title of the resource. * * @var string * @since 12.3 */ public $title; /** * The length of the resource in bytes. * * @var integer * @since 12.3 */ public $length; /** * Constructor. * * @param string $uri The URI to the linked resource. * @param string $relation The relationship between the feed and the linked resource. * @param string $type The resource type. * @param string $language The language of the resource found at the given URI. * @param string $title The title of the resource. * @param integer $length The length of the resource in bytes. * * @since 12.3 * @throws InvalidArgumentException */ public function __construct($uri = null, $relation = null, $type = null, $language = null, $title = null, $length = null) { $this->uri = $uri; $this->relation = $relation; $this->type = $type; $this->language = $language; $this->title = $title; // Validate the length input. if (isset($length) && !is_numeric($length)) { throw new InvalidArgumentException('Length must be numeric.'); } $this->length = (int) $length; } }
Close