Skip to content

Commit bfa6f11

Browse files
committed
update20190811
update20190811
1 parent 13cc41d commit bfa6f11

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

SuperSQLInjection/payload/MySQL.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,10 @@ public static String creatMySQLColumnsStrByError(List<String> columns, String ta
219219
public static String creatMySQLColumnsStr(List<String> columns, String table, String dbName, int limit)
220220
{
221221

222-
if (columns.Count <= 1) {
223-
224-
}
225222
StringBuilder sb = new StringBuilder("(select concat_ws(0x242424,");
226223
foreach (String c in columns) {
227224
// sb.Append(castMySQLColumn(c)+",");
228-
sb.Append(c + ",");
225+
sb.Append("ifnull("+c + ",0x20),");
229226
}
230227
if (columns.Count > 0)
231228
{

0 commit comments

Comments
 (0)