Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[NEWS] AWStats Remote Command Execution Vulnerability (configdir)

Subject: [NEWS] AWStats Remote Command Execution Vulnerability (configdir)
Date: 18 Jan 2005 11:37:58 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  AWStats Remote Command Execution Vulnerability (configdir)
------------------------------------------------------------------------


SUMMARY

 <http://awstats.sourceforge.net> AWStats is "a free tool that generates 
advanced web, ftp or mail server statistics, graphically". Remote 
exploitation of an input validation vulnerability in AWStats allows 
attackers to execute arbitrary commands under the privileges of the web 
server.

DETAILS

Vulnerable Systems:
 * AWStats version 6.1 and prior

Immune Systems:
 * AWStats version 6.3 or newer

The problem specifically exists when the application is running as a CGI 
script on a web server. The "configdir" parameter contains
unfiltered user-supplied data that is utilized in a call to the Perl 
routine open() as can be seen here on line 1082 of awstats.pl:
    if (open(CONFIG,"$searchdir$PROG.$SiteConfig.conf"))

The "searchdir" variables hold the value of the parameter provided by the 
attacker from "configdir." An attacker can cause arbitrary commands to be 
executed by prefixing them with the "|" character.

Analysis:
Successful exploitation allows remote attackers to execute arbitrary 
commands under the privileges of the web server. This can lead to further 
compromise as it provides remote attackers with local access.

Workaround:
Add a filter around the "configdir" parameter by replacing the following 
line:

    if ($QueryString =~ /configdir=([^&]+)/i)
    {
        $DirConfig=&DecodeEncodedString("$1");
    }

With:

    if ($QueryString =~ /configdir=([^&]+)/i)
    {
        $DirConfig=&DecodeEncodedString("$1");
        $DirConfig=~tr/a-z0-9_\-\/\./a-z0-9_\-\/\./cd;
    } 

Vendor response:
This vulnerability is addressed in AWStats 6.3, available for download at: 
 <http://awstats.sourceforge.net/#DOWNLOAD> 
http://awstats.sourceforge.net/#DOWNLOAD

Exploit:
The following URL will create a file named 'id' in the tmp directory of 
the remote server with the content of the command /usr/bin/id:
http://vulnerable/cgi-bin/awstats.pl?configdir=/usr/bin/id%20%3E%20/tmp/id%20|%20

Disclosure timeline:
10/21/2004 - Initial vendor notification
01/02/2005 - Initial vendor response
01/17/2005 - Public disclosure


ADDITIONAL INFORMATION

The information has been provided by  
<mailto:idlabs-advisories@idefense.com> iDEFENSE. The exploit has been 
provided by  <mailto:expert@securiteam.com> Noam Rathaus of Beyond 
Security Ltd.
The original article can be found at:  
<http://www.idefense.com/application/poi/display?id=185&type=vulnerabilities> 
http://www.idefense.com/application/poi/display?id=185&type=vulnerabilities



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [NEWS] AWStats Remote Command Execution Vulnerability (configdir), SecuriTeam <=