Database-Links
SQL Servers can be configured to link to other SQL Servers.
Last updated
SQL Servers can be configured to link to other SQL Servers.
Last updated
Login to DATA01
as the Administrator
user with password Welcome01!
.
Open "Microsoft SQL Server Management Studio".
3. Login with the Administrator
user using Windows Authentication.
4. Right click on the server object "Data01\Data (SQL Server 15.0.2000.5)" and select "Properties".
5. Open the "Security" tab and select "SQL Server and Windows Authentication mode" under "Server authentication".
6. Open "SQL Server 2019 Configuration Manager"
7. Restart the two SQL services with "DATA" in their name.
8. Open "Microsoft SQL Server Management Studio".
9. Expand "Security" and "Logins". Then right click on "Logins" and select "New Login".
10. Fill in the login name SQL_link
and password Eo6#jAzonQhw
. Then make sure the three password flags "Enforce Password policy", "Enforce password expiration" and "User must change password at next login" are unselected.
11. In the tab "Server Roles" select "setupadmin" and "sysadmin" and click "OK".
12. In the tab "User Mapping" select "Bank Transfers".
Login to WEB01
as the Administrator
user with password Welcome01!
.
Open "Microsoft SQL Server Management Studio".
Login with the Administrator
user using Windows Authentication.
Expand the "Server Objects" and "Linked Servers". Then right click on "Linked Servers" and select "New Linked Server".
Fill in Data01.secure.local
and select "SQL Server".
6. Open the "Security" tab and select "Be made using this security context". Then fill in the credentials we created in the previous section. SQL_link
and password Eo6#jAzonQhw
.
7. Open the "Server Options" tab and select True for "RPC Out". This is done so we can enable xp_cmdshell during the attack.
Step 7 could be skipped and then it could be enabled during the attack after getting sa privileges on Web01 database using the following query:
EXEC sp_serveroption @server='DATA01.SECURE.LOCAL', @optname='rpc out', @optvalue='True'
8. Click "OK" and the linked server should show up.
SQL Servers can be linked together to access data on the linked SQL Server. The link is created using a security context, this could be a SQL user or a domain user. The link will have the permissions from the user. If the user has sysadmin privileges it is possible to execute queries as sysadmin.
If xp_cmdshell is enabled on the linked server it is possible to execute commands. Or if RPCOUT is enabled it is possible to enable xp_cmdshell.
Download PowerUpSQL on the kali machine and host it on a webserver:
2. Login to WS01
as Richard with the password Sample123
.
3. Start PowerShell and download and execute an amsi and PowerUpSQL in memory:
3. With PowerUPSQL and the Get-SQLServerLink
cmdlet we can query the SQL Server links from the current domain.
4. The output shows that web01.amsterdam.bank.local
has a SQL Server link to DATA01.secure.local
. A link that is to another domain. The output also shows that rpc_out is enabled. With the cmdlet Get-SQLServerLinkCrawl
we can execute a query through the linked servers.
We wont see the data from the SQL Query since its wrapped into the CustomQuery
object. It is also queried to both SQL Servers.
5. With the parameter -QueryTarget
we can select a target instance to query.
Download HeidiSQL on WS01
.
To execute SQL queries and look into the database start heidiSQL.
Click on "New" on the left bottom and configure the following settings:
Network Type: Microsoft SQL Server (TCP/IP)
Library: SQLOLEDB
Hostname / IP: WEB01.amsterdam.bank.local
Select: "Use Windows Authentication"
Port: 1433
4. Click "OK" on the security Issue warning.
5. In the "Query" tab fill in the following to query the SQL Links:
6. We discovered the same SQL server link as earlier. We can query the server with the following query:
7. We can query the server to check if xp_cmdshell
is on:
8. The value 0
means xp_cmdshell is disabled. We can try to enable xp_cmdshell with the following queries:
9. When we check if xp_cmdshell is enabled we see it is enabled now.
10. We can execute commands using the EXECUTE function.
11. We could get a reverse shell by executing the following query using the technique from:
Reverse shell trickExecute the following query in HeidiSQL to disable xp_cmdshell again:
Configure the SQL_Link with the least privilege possible, dont use the sysadmin role.
Disable xp_cmdshell on the SQL Server.
Disable RPC OUT on the SQL Server.