I have a small application, there is one field in which I can write a number and submit it, the page request goes to server and I get a response or no response (as per the argument)
Now I checked the field for sql injection and got that it is injectable which is fine for me since I am in testing mode.
This is the result, Now how I can verify that these field was actually injectable, I tried to copied the payload in the field and submitting it, but it didnt worked.
The query that takes the argument is like this
$q = " select * from users where id = $_REQUEST['cnic']";
// REST OF CODE FOR ITERATING QUERY