Skip to content

Commit bbe5a27

Browse files
shack2shack2
authored andcommitted
20200209
bug修复
1 parent 46e5831 commit bbe5a27

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

SuperSQLInjection/Main.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public void HttpDownloadFile(string url, string path)
286286
responseStream.Close();
287287
}
288288

289-
public static int version = 20191212;
289+
public static int version = 20200209;
290290
public static string versionURL = "http://www.shack2.org/soft/getNewVersion?ENNAME=SSuperSQLInjection&NO=" + URLEncode.UrlEncode(Tools.getSystemSid()) + "&VERSION=" + version;
291291
//检查更新
292292
public void checkUpdate()
@@ -2706,7 +2706,6 @@ public int getValue(String payLoadStr, int start, int end)
27062706
{
27072707
int mid = 0;
27082708
String payload = "";
2709-
Boolean lastexists = false;
27102709
while (start <= end)
27112710
{
27122711
//2分法获取中间数字

SuperSQLInjection/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("www.shack2.org")]
1212
[assembly: AssemblyProduct("超级SQL注入工具")]
13-
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
13+
[assembly: AssemblyCopyright("Copyright © 2014-2020")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
3333
// 方法是按如下所示使用“*”:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2019.12.12")]
36-
[assembly: AssemblyFileVersion("1.2019.12.12")]
35+
[assembly: AssemblyVersion("1.2020.02.09")]
36+
[assembly: AssemblyFileVersion("1.2020.02.09")]

SuperSQLInjection/payload/MySQL.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public static String creatMySQLColumnsStr(List<String> columns, String table, St
260260
/// <returns></returns>
261261
public static String concatMySQLColumnStr(List<String> columns)
262262
{
263-
StringBuilder sb = new StringBuilder("concat(0x5e5e21,concat_ws("+ Comm.COLUMNS_SPLIT_HEX_STR + ",");
263+
StringBuilder sb = new StringBuilder("concat(0x5e5e21,convert(concat_ws("+ Comm.COLUMNS_SPLIT_HEX_STR + ",");
264264
for (int i = 0; i < columns.Count; i++)
265265
{
266266
if (columns.Count > 1)
@@ -278,7 +278,7 @@ public static String concatMySQLColumnStr(List<String> columns)
278278
{
279279
sb.Remove(sb.Length - 1, 1);
280280
}
281-
sb.Append("),0x215e5e)");
281+
sb.Append(") using UTF8),0x215e5e)");
282282

283283
return sb.ToString();
284284

SuperSQLInjection/tools/http/HTTP.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ public static Boolean findRetryKey(String body) {
6868
if (!String.IsNullOrEmpty(key)&&body.IndexOf(key) != -1)
6969
{
7070
return true;
71-
break;
7271
}
7372
}
7473
}

0 commit comments

Comments
 (0)