I use -m switch in sqlmap to read targets from file and test all of them for sql injection.
sqlmap -m requests-file.txt --batch
There isn't problem with 'GET' requests and query string parameters. But in this way, I can't test requests with 'POST' method that have parameters in post body for each request.
Is it possible add data of each request in file for using with -m switch?
Is there any solution for test multiple 'POST' requests using sqlmap?