sqlmap

Automated SQL injection testing and database server exploitation

brewmacoslinux
Try with needOr install directly
Source

About

Penetration testing for SQL injection and database servers

Commands

sqlmap

Examples

Test a URL for SQL injection vulnerabilities$ sqlmap -u 'http://target.com/page.php?id=1'
Enumerate databases and tables from vulnerable target$ sqlmap -u 'http://target.com/page.php?id=1' --dbs --tables
Extract data from specific database table$ sqlmap -u 'http://target.com/page.php?id=1' -D database_name -T table_name --dump