Hi Brian.
Minor update. As Sybase doesn't support LIMIT/OFFSET like structure (same
thing as for MSSQL) we use a method called "pivoting" (one column is used
as a "pivot" for retrieving other column values) for deriving row content
from tables. Now, problem is that pivoting requires "derived" tabl
Hi Brian.
Sorry for the late reply.
You can try it yourself and report back. You can go to the xml/queries.xml,
line 533 and change:
...count2="SELECT COUNT(*) FROM (SELECT DISTINCT %s FROM %s) AS
value_table"/>
to:
...count2="SELECT COUNT(DISTINCT %s) FROM %s"/>
Please, also try with multiple c
Hello,
Recently I've run into an issue with sqlmap and a pre-12.5.1 Sybase DB. It
seems pre-12.5.1 Sybase DBs do not support derived tables (e.g., SELECT *
FROM (SELECT example from table) as name). sqlmap uses these when
enumerating the table so it quickly runs into syntax errors. The feature
ann