added rca to cloudme doc
parent
520ed188e6
commit
5f9432ed6a
|
@ -1,5 +1,17 @@
|
|||
## Description
|
||||
This module exploits a buffer overflow vulnerability in [CloudMe Sync v1.10.9](https://www.cloudme.com/downloads/CloudMe_1109.exe).
|
||||
|
||||
This module exploits a buffer overflow vulnerability found in [CloudMe Sync v1.10.9](https://www.cloudme.com/downloads/CloudMe_1109.exe).
|
||||
|
||||
## Vulnerable Application
|
||||
|
||||
`CloudMe.00564B00` sets up a buffer that is intended to take up 1048 bytes on the stack to read in data from port 8888. The CloudMe function then passes a pointer to the stack buffer and a max size to `Qt5Core._ZN9QIODevice4readEPcx`.
|
||||
|
||||
![alt text](https://user-images.githubusercontent.com/40177151/44545528-f21f0280-a6da-11e8-898b-edd0a17e0d10.png "CloudMe.00564B00")
|
||||
|
||||
The call to `Qt5Core._ZN9QIODevice4readEPcx` shows the pointer and the max size arguments passed in by `CloudMe.00564B00`.
|
||||
![alt text](https://user-images.githubusercontent.com/40177151/44545559-09f68680-a6db-11e8-8a0b-36466dafd21e.png "Qt Read Args")
|
||||
|
||||
Because neither functions check the max size against the actual amount of space allocated on the stack, the program writes past the buffer's allocated space and allows for arbitrary code execution.
|
||||
|
||||
## Verification Steps
|
||||
1. Install CloudMe for Desktop version `v1.10.9`
|
||||
|
|
Loading…
Reference in New Issue