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 /
install /
[ HOME SHELL ]
Name
Size
Permission
Action
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--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : etape_ldap1.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; } function install_etape_ldap1_dist() { $adresse_ldap = defined('_INSTALL_HOST_LDAP') ? _INSTALL_HOST_LDAP : 'localhost'; $port_ldap = defined('_INSTALL_PORT_LDAP') ? _INSTALL_PORT_LDAP : 389; $tls_ldap = defined('_INSTALL_TLS_LDAP') ? _INSTALL_TLS_LDAP : 'non'; $protocole_ldap = defined('_INSTALL_PROTOCOLE_LDAP') ? _INSTALL_PROTOCOLE_LDAP : 3; // on essaie 2 en cas d'echec $login_ldap = defined('_INSTALL_USER_LDAP') ? _INSTALL_USER_LDAP : ''; $pass_ldap = defined('_INSTALL_PASS_LDAP') ? _INSTALL_PASS_LDAP : ''; $minipage = new Spip\Afficher\Minipage\Installation(); echo $minipage->installDebutPage(['onload' => 'document.getElementById(\'suivant\').focus();return false;']); echo info_etape( _T('titre_connexion_ldap'), info_progression_etape(1, 'etape_ldap', 'install/') ); echo generer_form_ecrire('install', ( "\n<input type='hidden' name='etape' value='ldap2'>" . fieldset( _T('entree_adresse_annuaire'), [ 'adresse_ldap' => [ 'label' => _T('texte_adresse_annuaire_1'), 'valeur' => $adresse_ldap ], 'port_ldap' => [ 'label' => _T('entree_port_annuaire') . '<br>' . _T('texte_port_annuaire'), 'valeur' => $port_ldap ], 'tls_ldap' => [ 'label' => '<b>' . _T('tls_ldap') . '</b>', 'valeur' => $tls_ldap, 'alternatives' => [ 'non' => _T('item_non'), 'oui' => _T('item_oui') ] ], 'protocole_ldap' => [ 'label' => _T('protocole_ldap'), 'valeur' => $protocole_ldap, 'alternatives' => [ '3' => '3', '2' => '2' ] ] ] ) . "\n<p>" . _T('texte_acces_ldap_anonyme_1') . '</p>' . fieldset( _T('connexion_ldap'), [ 'login_ldap' => [ 'label' => _T('texte_login_ldap_1'), 'valeur' => $login_ldap ], 'pass_ldap' => [ 'label' => _T('entree_passe_ldap'), 'valeur' => $pass_ldap ] ] ) . bouton_suivant())); echo $minipage->installFinPage(); }
Close