EddieKidiw

Mailer CodedCoder's Blaster Decoder by Eddie Kidiw

Nov 24th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.44 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. ##################################################################
  5. # SETTINGS START
  6. ##################################################################
  7.  
  8.  
  9. // NOTE: all rows except last must have comma "," at the end of line
  10. $LOGIN_INFORMATION = array(
  11. 'passpass',
  12. 'dpasswordis-hack101'
  13. );
  14.  
  15.  
  16. define('USE_USERNAME', false);
  17.  
  18.  
  19. define('LOGOUT_URL', 'http://www.google.com');
  20.  
  21.  
  22. define('TIMEOUT_MINUTES', 120);
  23.  
  24. // This parameter is only useful when TIMEOUT_MINUTES is not zero
  25. // true - timeout time from last activity, false - timeout time from login
  26. define('TIMEOUT_CHECK_ACTIVITY', true);
  27.  
  28. ##################################################################
  29. # SETTINGS END
  30. ##################################################################
  31.  
  32.  
  33. ///////////////////////////////////////////////////////
  34. // do not change code below
  35. ///////////////////////////////////////////////////////
  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):<br>&lt;?php include("' . str_replace('\\','\\\\',__FILE__) . '"); ?&gt;');
  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: $PHP_SELF");
  49. exit();
  50. }
  51.  
  52. if(!function_exists('showLoginPasswordProtect')) {
  53.  
  54. // show login form
  55. function showLoginPasswordProtect($error_msg) {
  56. ?>
  57. <html>
  58. <head>
  59. <title>Please enter password to access this page</title>
  60. <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
  61. <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
  62. </head>
  63. <body>
  64. <style>
  65. input { border: 1px solid black; }
  66. </style>
  67. <div style="width:500px; margin-left:auto; margin-right:auto; text-align:center">
  68. <form method="post">
  69. <h3>&nbsp;&nbsp; Please enter password to access this page</h3>
  70. <font color="red"><?php echo $error_msg; ?></font><br />
  71. <?php if (USE_USERNAME) echo 'Login:<br /><input type="input" name="access_login" /><br />Password:<br />'; ?>
  72. <input type="password" name="access_password" /><p></p><input type="submit" name="Submit" value="Submit" />
  73.  
  74. </form>
  75. </div>
  76. </body>
  77. </html>
  78.  
  79. <?php
  80. // stop at this point
  81. die();
  82. }
  83. }
  84.  
  85. // user provided password
  86. if (isset($_POST['access_password'])) {
  87.  
  88. $login = isset($_POST['access_login']) ? $_POST['access_login'] : '';
  89. $pass = $_POST['access_password'];
  90. if (!USE_USERNAME && !in_array($pass, $LOGIN_INFORMATION)
  91. || (USE_USERNAME && ( !array_key_exists($login, $LOGIN_INFORMATION) || $LOGIN_INFORMATION[$login] != $pass ) )
  92. ) {
  93. showLoginPasswordProtect("Incorrect password.");
  94. }
  95. else {
  96. // set cookie if password was validated
  97. setcookie("verify", md5($login.'%'.$pass), $timeout, '/');
  98.  
  99. // Some programs (like Form1 Bilder) check $_POST array to see if parameters passed
  100. // So need to clear password protector variables
  101. unset($_POST['access_login']);
  102. unset($_POST['access_password']);
  103. unset($_POST['Submit']);
  104. }
  105.  
  106. }
  107.  
  108. else {
  109.  
  110. // check if password cookie is set
  111. if (!isset($_COOKIE['verify'])) {
  112. showLoginPasswordProtect("");
  113. }
  114.  
  115. // check if cookie is good
  116. $found = false;
  117. foreach($LOGIN_INFORMATION as $key=>$val) {
  118. $lp = (USE_USERNAME ? $key : '') .'%'.$val;
  119. if ($_COOKIE['verify'] == md5($lp)) {
  120. $found = true;
  121. // prolong timeout
  122. if (TIMEOUT_CHECK_ACTIVITY) {
  123. setcookie("verify", md5($lp), $timeout, '/');
  124. }
  125. break;
  126. }
  127. }
  128. if (!$found) {
  129. showLoginPasswordProtect("");
  130. }
  131.  
  132. }
  133.  
  134. ?>
  135. <?php
  136.  
  137.  
  138. @$action=$_POST['action'];
  139. @$from=$_POST['from'];
  140. @$realname=$_POST['realname'];
  141. @$replyto=$_POST['replyto'];
  142. @$subject=$_POST['subject'];
  143. @$message=$_POST['message'];
  144. @$emaillist=$_POST['emaillist'];
  145. @$file_name=$_FILES['file']['name'];
  146. @$contenttype=$_POST['contenttype'];
  147. @$file=$_FILES['file']['tmp_name'];
  148. @$amount=$_POST['amount'];
  149. set_time_limit(intval($_POST['timelimit']));
  150.  
  151.  
  152.  
  153.  
  154. if ($_SERVER["HTTP_X_FORWARDED_FOR"]){
  155. $ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
  156. }else{
  157. $ip = $_SERVER["REMOTE_ADDR"];
  158. }
  159.  
  160. ?>
  161. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  162. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  163. <html>
  164. <head>
  165. <title>CodedCoder's Blaster</title>
  166. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  167. <style type="text/css">
  168. <!--
  169. .style1 {
  170. font-family: Geneva, Arial, Helvetica, sans-serif;
  171. font-size: 12px;
  172. }
  173. .style2 {
  174. font-size: 10px;
  175. font-family: Geneva, Arial, Helvetica, sans-serif;
  176. }
  177. .Times-New-Roman-16px00468Cb {font:bold 16px Times New Roman, serif; color:#00468C}
  178. .Times-New-Roman-24px00468Cb {font:bold 24px Times New Roman, serif; color:#000000}
  179. .Times-New-Roman-32px00468Cb {font:bold 32px Times New Roman, serif; color:#000000}
  180. .style3 {color: #000000}
  181.  
  182. -->
  183. </style>
  184. </head>
  185. <body bgcolor="#C0C0C0" text="#000000">
  186. <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  187. <font color="#00468C"><b>CodedCoder's Blaster</b></font></p>
  188. <p>&nbsp;</p>
  189. <?php
  190. If ($action=="mysql"){
  191. //Grab email addresses from MySQL
  192. include "./mysql.info.php";
  193.  
  194. if (!$sqlhost || !$sqllogin || !$sqlpass || !$sqldb || !$sqlquery){
  195. print "Please configure mysql.info.php with your MySQL information. All settings in this config file are required.";
  196. exit;
  197. }
  198.  
  199. $db = mysql_connect($sqlhost, $sqllogin, $sqlpass) or die("Connection to MySQL Failed.");
  200. mysql_select_db($sqldb, $db) or die("Could not select database $sqldb");
  201. $result = mysql_query($sqlquery) or die("Query Failed: $sqlquery");
  202. $numrows = mysql_num_rows($result);
  203.  
  204. for($x=0; $x<$numrows; $x++){
  205. $result_row = mysql_fetch_row($result);
  206. $oneemail = $result_row[0];
  207. $emaillist .= $oneemail."\n";
  208. }
  209.  
  210.  
  211.  
  212. }
  213.  
  214. if ($action=="send"){ $message = urlencode($message);
  215. $message = ereg_replace("%5C%22", "%22", $message);
  216. $message = urldecode($message);
  217. $message = stripslashes($message);
  218. $subject = stripslashes($subject);
  219. }
  220. ?>
  221. <form name="form1" method="post" action="" enctype="multipart/form-data"><br />
  222. <table width="142" border="0">
  223. <tr>
  224.  
  225. <td width="81">
  226. <div align="right">
  227. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your Email:</font>
  228. </div>
  229. </td>
  230.  
  231. <td width="219">
  232. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  233. <input type="text" name="from" value="<?php print $from; ?>" size="30" />
  234. </font>
  235. </td>
  236.  
  237. <td width="212">
  238. <div align="right">
  239. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your Name:</font>
  240. </div>
  241. </td>
  242.  
  243. <td width="278">
  244. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  245. <input type="text" name="realname" value="<?php print $realname; ?>" size="30" />
  246. </font>
  247. </td>
  248. </tr>
  249. <tr>
  250. <td width="81">
  251. <div align="right">
  252. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Reply-To:</font>
  253.  
  254. </div>
  255. </td>
  256. <td width="219">
  257. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  258. <input type="text" name="replyto" value="<?php print $replyto; ?>" size="30" />
  259. </font>
  260. </td>
  261. <td width="212">
  262. <div align="right">
  263. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Attach File:</font>
  264. </div>
  265. </td>
  266. <td width="278">
  267. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  268. <input type="file" name="file" size="24" />
  269. </font>
  270. </td>
  271. </tr>
  272. <tr>
  273. <td width="81">
  274. <div align="right">
  275. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font>
  276. </div>
  277. </td>
  278. <td colspan="3" width="703">
  279. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  280. <input type="text" name="subject" value="<? print $subject; ?>" size="90" />
  281. </font>
  282. </td>
  283. </tr>
  284. <tr valign="top">
  285. <td colspan="3" width="520">
  286. <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Message Box :</font>
  287. </td>
  288. <td width="278">
  289. <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Email Target :</font>
  290. </td>
  291. </tr>
  292. <tr valign="top">
  293. <td colspan="3" width="520">
  294. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  295. <textarea name="message" cols="56" rows="10"><?php print $message; ?></textarea><br />
  296. <input type="radio" name="contenttype" value="plain" /> Plain
  297. <input type="radio" name="contenttype" value="html" checked /> HTML
  298. <input type="hidden" name="action" value="send" /><br />
  299. Number to send: <input type="text" name="amount" value="1" size="10" /><br />
  300. Maximum script execution time(in seconds, 0 for no timelimit)<input type="text" name="timelimit" value="0" size="10" />
  301. <input type="submit" value="Send eMails" />
  302. </font>
  303. </td>
  304. <td width="278">
  305. <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  306. <textarea name="emaillist" cols="32" rows="10"><?php print $emaillist; ?></textarea>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  307. </font><font size="2"><font color="#008000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><a href="<?php echo $_SERVER['PHP_SELF'] ?>?logout=1"><font color="#008000">
  308. Logout</font></a></font>&nbsp;&nbsp;
  309. <p>&nbsp;</p>
  310. <p><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  311. </font>
  312. </td>
  313. </tr>
  314. </table>
  315. </form>
  316. <?php
  317. if ($action=="send"){
  318. if (!$from && !$subject && !$message && !$emaillist){
  319. print "Please complete all fields before sending your message.";
  320. exit;
  321. }
  322. $allemails = split("\n", $emaillist);
  323. $numemails = count($allemails);
  324. $filter = "maillist";
  325. $float = "mailist info <full@info.com>";
  326. //Open the file attachment if any, and base64_encode it for email transport
  327. If ($file_name){
  328. if (!file_exists($file)){
  329. die("The file you are trying to upload couldn't be copied to the server");
  330. }
  331. $content = fread(fopen($file,"r"),filesize($file));
  332. $content = chunk_split(base64_encode($content));
  333. $uid = strtoupper(md5(uniqid(time())));
  334. $name = basename($file);
  335. }
  336.  
  337. for($xx=0; $xx<$amount; $xx++){
  338. for($x=0; $x<$numemails; $x++){
  339. $to = $allemails[$x];
  340. if ($to){
  341. $to = ereg_replace(" ", "", $to);
  342. $message = ereg_replace("&email&", $to, $message);
  343. $subject = ereg_replace("&email&", $to, $subject);
  344. $nrmail=$x+1;
  345. print "Blasting mail $nrmail of $numemails to $to.......";
  346. flush();
  347. $header = "From: $realname <$from>\r\nReply-To: $replyto\r\n";
  348. $header .= "MIME-Version: 1.0\r\n";
  349. If ($file_name) $header .= "Content-Type: multipart/mixed; boundary=$uid\r\n";
  350. If ($file_name) $header .= "--$uid\r\n";
  351. $header .= "Content-Type: text/$contenttype\r\n";
  352. $header .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
  353. $header .= "$message\r\n";
  354. If ($file_name) $header .= "--$uid\r\n";
  355. If ($file_name) $header .= "Content-Type: $file_type; name=\"$file_name\"\r\n";
  356. If ($file_name) $header .= "Content-Transfer-Encoding: base64\r\n";
  357. If ($file_name) $header .= "Content-Disposition: attachment; filename=\"$file_name\"\r\n\r\n";
  358. If ($file_name) $header .= "$content\r\n";
  359. If ($file_name) $header .= "--$uid--";
  360. mail($to, $subject, "", $header);
  361. print "Sent<br>";
  362. flush();
  363. }
  364. }
  365. }
  366.  
  367. }
  368. ?>
  369.  
  370. <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  371. <font size="2">&nbsp;</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  372. </p>
  373. <p class="style2">
  374. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</p>
  375. <p class="style2">
  376. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
  377. Copyright Major Hammer inc. (2009)</p>
  378. <p class="style2">
  379. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  380. <font color="#00468C"><b>&nbsp;<font size="2"><a href="mailto:codedcoder@live.com">Β©OdedΒ©Oder&#8482;</a></font></b></font></p>
  381. <p class="style2">
  382. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
  383. <p class="style1">&nbsp;</p>
  384. </body>
  385. </html>
Add Comment
Please, Sign In to add comment