1

I have a REST API running on a server.

Is there a way to detect an unexpected sqlmap analysis?

jscherman
  • 113
  • 5

1 Answers1

6

SQLMap works by sending a lot of different requests to the server. It is pretty easy to see the scan if you look at your server logs manually.

If you want to do it programatically, just look for SQL verbs in your logs in the input fields where they don't make sense (select, from, where, order by).

schroeder
  • 123,438
  • 55
  • 284
  • 319