Linux server292.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 162.0.235.5 | : 216.73.216.150
Cant Read [ /etc/named.conf ]
8.3.25
comfsblg
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 /
comfsblg /
gtts-api /
vendor /
symfony /
uid /
[ HOME SHELL ]
Name
Size
Permission
Action
Command
[ DIR ]
drwxr-xr-x
Factory
[ DIR ]
drwxr-xr-x
AbstractUid.php
5.09
KB
-rw-r--r--
BinaryUtil.php
6.37
KB
-rw-r--r--
CHANGELOG.md
1.27
KB
-rw-r--r--
HashableInterface.php
636
B
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
MaxUlid.php
383
B
-rw-r--r--
MaxUuid.php
415
B
-rw-r--r--
NilUlid.php
383
B
-rw-r--r--
NilUuid.php
472
B
-rw-r--r--
README.md
604
B
-rw-r--r--
TimeBasedUidInterface.php
519
B
-rw-r--r--
Ulid.php
6.88
KB
-rw-r--r--
Uuid.php
7.36
KB
-rw-r--r--
UuidV1.php
2.36
KB
-rw-r--r--
UuidV3.php
592
B
-rw-r--r--
UuidV4.php
1.33
KB
-rw-r--r--
UuidV5.php
592
B
-rw-r--r--
UuidV6.php
3.01
KB
-rw-r--r--
UuidV7.php
5
KB
-rw-r--r--
UuidV8.php
573
B
-rw-r--r--
composer.json
917
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UuidV4.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Uid; /** * A v4 UUID contains a 122-bit random number. * * @author Grégoire Pineau <lyrixx@lyrixx.info> */ class UuidV4 extends Uuid { protected const TYPE = 4; public function __construct(?string $uuid = null) { if (null === $uuid) { // Generate 36 random hex characters (144 bits) // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx $uuid = bin2hex(random_bytes(18)); // Insert dashes to match the UUID format // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx $uuid[8] = $uuid[13] = $uuid[18] = $uuid[23] = '-'; // Set the UUID version to 4 // xxxxxxxx-xxxx-4xxx-xxxx-xxxxxxxxxxxx $uuid[14] = '4'; // Set the UUID variant: the 19th char must be in [8, 9, a, b] // xxxxxxxx-xxxx-4xxx-?xxx-xxxxxxxxxxxx $uuid[19] = ['8', '9', 'a', 'b', '8', '9', 'a', 'b', 'c' => '8', 'd' => '9', 'e' => 'a', 'f' => 'b'][$uuid[19]] ?? $uuid[19]; $this->uid = $uuid; } else { parent::__construct($uuid, true); } } }
Close