Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting particular type of attack with Sqlmap

Instead of testing all the possible attacks using sqlmap, is there any way to test a vulnerable server using a particular type of attack only? For example, I only want to attack a webserver with PostgreSQL stacked conditional-error blind queries. Is there any way to do so?

like image 462
user4895437 Avatar asked May 13 '15 11:05

user4895437


1 Answers

The --dbms=DBMS flag will force use of a particular back-end database system.

For PostgresSQL set this to

--dbms=PostgreSQL

The --technique flag will enable you to set the type of queries.

e.g.

--technique=B

B is the setting for boolean-based blind.

See the usage guide for full details.

like image 76
SilverlightFox Avatar answered Oct 17 '22 12:10

SilverlightFox