7

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?

Kara
  • 6,115
  • 16
  • 50
  • 57
user4895437
  • 71
  • 1
  • 3

1 Answers1

8

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.

SilverlightFox
  • 32,436
  • 11
  • 76
  • 145