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 /
log /
[ HOME SHELL ]
Name
Size
Permission
Action
logger
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
entry.php
2.08
KB
-rw-r--r--
log.php
8.27
KB
-rw-r--r--
logger.php
1.89
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : entry.php
<?php /** * @package Joomla.Platform * @subpackage Log * * @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; /** * Joomla! Log Entry class * * This class is designed to hold log entries for either writing to an engine, or for * supported engines, retrieving lists and building in memory (PHP based) search operations. * * @since 11.1 */ class JLogEntry { /** * Application responsible for log entry. * @var string * @since 11.1 */ public $category; /** * The date the message was logged. * @var JDate * @since 11.1 */ public $date; /** * Message to be logged. * @var string * @since 11.1 */ public $message; /** * The priority of the message to be logged. * @var string * @since 11.1 * @see JLogEntry::$priorities */ public $priority = JLog::INFO; /** * List of available log priority levels [Based on the Syslog default levels]. * @var array * @since 11.1 */ protected $priorities = array( JLog::EMERGENCY, JLog::ALERT, JLog::CRITICAL, JLog::ERROR, JLog::WARNING, JLog::NOTICE, JLog::INFO, JLog::DEBUG ); /** * Constructor * * @param string $message The message to log. * @param string $priority Message priority based on {$this->priorities}. * @param string $category Type of entry * @param string $date Date of entry (defaults to now if not specified or blank) * * @since 11.1 */ public function __construct($message, $priority = JLog::INFO, $category = '', $date = null) { $this->message = (string) $message; // Sanitize the priority. if (!in_array($priority, $this->priorities, true)) { $priority = JLog::INFO; } $this->priority = $priority; // Sanitize category if it exists. if (!empty($category)) { $this->category = (string) strtolower(preg_replace('/[^A-Z0-9_\.-]/i', '', $category)); } // Get the date as a JDate object. $this->date = new JDate($date ? $date : 'now'); } }
Close