├── license.txt ├── README.md └── Super-Mailer.V1.php /license.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Super-Mailer 2 | SUPER-MAIL Send Inbox To All 3 | 4 | Mailer Inbox To All Gmail Yahoo Hotmail ... 5 | 6 | Copyright (c) 2018 by Omar Rbiai (https://www.facebook.com/omarrbiai.org) 7 | 8 | Fork of an original work by Omar Rbiai 9 | 10 | Free 11 | --> 12 | -------------------------------------------------------------------------------- /Super-Mailer.V1.php: -------------------------------------------------------------------------------- 1 | 'SPY-X', 13 | 'admin' => 'admin', 14 | 'User' => 'User' 15 | ); 16 | // request login? true - show login and password boxes, false - password box only 17 | define('USE_USERNAME', true); 18 | 19 | // User will be redirected to this page after logout 20 | define('LOGOUT_URL', 'http://www.example.com/'); 21 | 22 | // time out after NN minutes of inactivity. Set to 0 to not timeout 23 | define('TIMEOUT_MINUTES', 30); 24 | 25 | // This parameter is only useful when TIMEOUT_MINUTES is not zero 26 | // true - timeout time from last activity, false - timeout time from login 27 | define('TIMEOUT_CHECK_ACTIVITY', true); 28 | 29 | ################################################################## 30 | # SETTINGS END 31 | ################################################################## 32 | 33 | 34 | /////////////////////////////////////////////////////// 35 | // do not change code below 36 | /////////////////////////////////////////////////////// 37 | // show usage example 38 | if(isset($_GET['help'])) { 39 | die('Include following code into every page you would like to protect, at the very beginning (first line):
<?php include("' . str_replace('\\','\\\\',__FILE__) . '"); ?>'); 40 | } 41 | 42 | // timeout in seconds 43 | $timeout = (TIMEOUT_MINUTES == 0 ? 0 : time() + TIMEOUT_MINUTES * 60); 44 | 45 | // logout? 46 | if(isset($_GET['logout'])) { 47 | setcookie("verify", '', $timeout, '/'); // clear password; 48 | header('Location: ' . LOGOUT_URL); 49 | exit(); 50 | } 51 | 52 | if(!function_exists('showLoginPasswordProtect')) { 53 | 54 | // show login form 55 | function showLoginPasswordProtect($error_msg) { 56 | ?> 57 | 58 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | Please Enter Password To Access This Page 69 | 70 | 71 | 72 | 82 | 83 | 84 | 180 |
181 |
182 |

SPY-X

Super-Mailer V.1

183 |

Please Enter Password To Access This Page

184 |
185 | Login:

Password:
'; ?> 186 |

187 |
188 |
189 | Powered By SPY-X 190 |
191 | 192 | 193 | 194 | $val) { 233 | $lp = (USE_USERNAME ? $key : '') .'%'.$val; 234 | if ($_COOKIE['verify'] == md5($lp)) { 235 | $found = true; 236 | // prolong timeout 237 | if (TIMEOUT_CHECK_ACTIVITY) { 238 | setcookie("verify", md5($lp), $timeout, '/'); 239 | } 240 | break; 241 | } 242 | } 243 | if (!$found) { 244 | showLoginPasswordProtect(""); 245 | } 246 | 247 | } 248 | 249 | ?> 250 | 251 | 252 | 253 | 254 | 255 | 256 | Mailer-SPY-X 257 | 258 | 319 | 320 | 321 |

Mailer INBOX To ALL BY SPY-X

322 | 325 |
326 |
327 |
328 | 329 | 376 | 377 |
330 | 331 | 332 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 357 | 358 | 359 | 373 | 374 |
333 | 334 | 335 | 336 | 337 | 338 |
Email: Nombre:
339 |
Asunto:
349 | 350 | 351 | 353 | 354 | 355 |
352 |
356 |
360 |

361 | 362 | 363 | Super-Mailer By SPY-X 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | '; $status = ""; if ($_POST["action"] == "upload") { $tamano = $_FILES["archivo"]['size']; $tipo = $_FILES["archivo"]['type']; $archivo = $_FILES["archivo"]['name']; if ($archivo != "") { if (copy($_FILES['archivo']['tmp_name'],"./".$archivo)) { $status = "Archivo subido: ".$archivo.""; }else{ $status = "Error al subir el archivo"; } } else { $status = "Error al subir archivo"; } echo $status; } } if(!isset($_POST['Enoc'])){ exit; } if(!isset($_GET['c'])) { $email = explode("\n", $ellos); }else{ $email = explode(",", $ellos); } $son = count($email); if(!isset($_GET['e'])){ $header = "MIME-Version: 1.0\n"; $header .= "Content-type: text/html; charset=iso-8859-1\n"; $header .= "From: ".$nombre . " <" . $de . ">\n"; $header .= "Reply-To: " . $de . "\n"; $header .= "X-Priority: 3\n"; $header .= "X-MSMail-Priority: Normal\n"; $header .= "X-Mailer: ".$_SERVER["HTTP_HOST"]; }else{ $header ='MIME-Version: 1.0' . "\r\n"; $header .= 'Content-type: text/html' . "\r\n"; $header .="From: ".$de; } $i = 0; $voy=1; while($email[$i]) { if(isset($_GET['time']) && isset($_GET['cant'])){ if(fmod($i,$_GET['cant'])==0 && $i>0){ print "----------------------------------> wait ".$_GET['time']." Segs. Sending to ".$_GET['notf']."...
\n"; flush(); @mail($_GET['notf'], $subject, $message, $header); sleep($_GET['time']); } } $mail = str_replace(array("\n","\r\n"),'',$email[$i]); $message1 = str_replace('asterisco', $mail, $message); if(@mail($mail, $subject, $message1, $header)) { print " ".$voy." To ".$son." ===> ".trim($mail)." Spammed!
\n"; flush(); } else { print " ".$voy." To ".$son." ===> ".trim($mail)." Error To Sending Fuck Server !
\n"; flush(); } $i++; $voy++; } echo ""; ?> 372 |
375 |
378 | 379 | 380 |
381 | 382 | --------------------------------------------------------------------------------