bug修复
This commit is contained in:
shack2
2020-02-09 18:12:44 +08:00
parent 46e5831a49
commit bbe5a271d2
4 changed files with 6 additions and 8 deletions

View File

@@ -286,7 +286,7 @@ namespace SuperSQLInjection
responseStream.Close();
}
public static int version = 20191212;
public static int version = 20200209;
public static string versionURL = "http://www.shack2.org/soft/getNewVersion?ENNAME=SSuperSQLInjection&NO=" + URLEncode.UrlEncode(Tools.getSystemSid()) + "&VERSION=" + version;
//检查更新
public void checkUpdate()
@@ -2706,7 +2706,6 @@ namespace SuperSQLInjection
{
int mid = 0;
String payload = "";
Boolean lastexists = false;
while (start <= end)
{
//2分法获取中间数字

View File

@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("www.shack2.org")]
[assembly: AssemblyProduct("超级SQL注入工具")]
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
[assembly: AssemblyCopyright("Copyright © 2014-2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2019.12.12")]
[assembly: AssemblyFileVersion("1.2019.12.12")]
[assembly: AssemblyVersion("1.2020.02.09")]
[assembly: AssemblyFileVersion("1.2020.02.09")]

View File

@@ -260,7 +260,7 @@ namespace SuperSQLInjection.payload
/// <returns></returns>
public static String concatMySQLColumnStr(List<String> columns)
{
StringBuilder sb = new StringBuilder("concat(0x5e5e21,concat_ws("+ Comm.COLUMNS_SPLIT_HEX_STR + ",");
StringBuilder sb = new StringBuilder("concat(0x5e5e21,convert(concat_ws("+ Comm.COLUMNS_SPLIT_HEX_STR + ",");
for (int i = 0; i < columns.Count; i++)
{
if (columns.Count > 1)
@@ -278,7 +278,7 @@ namespace SuperSQLInjection.payload
{
sb.Remove(sb.Length - 1, 1);
}
sb.Append("),0x215e5e)");
sb.Append(") using UTF8),0x215e5e)");
return sb.ToString();

View File

@@ -68,7 +68,6 @@ namespace SuperSQLInjection.tools
if (!String.IsNullOrEmpty(key)&&body.IndexOf(key) != -1)
{
return true;
break;
}
}
}