elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Recopilación Tutoriales y Manuales Hacking, Seguridad, Privacidad, Hardware, etc


+  Foro de elhacker.net
|-+  Foros Generales
| |-+  Dudas Generales (Moderador: engel lex)
| | |-+  email anonimo con codigo html
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: email anonimo con codigo html  (Leído 3,847 veces)
Yukón02

Desconectado Desconectado

Mensajes: 13


Ver Perfil
email anonimo con codigo html
« en: 22 Julio 2012, 03:54 am »

Buenas, necesito enviar un correo

Necesito una pagina programa o lo que sea que me permita

Enviar el mensaje en html
Que me permita poner el emisor que yo quiera loqueyoquiera@loqueyoquiera.com o .es
Y que me lo mande a la bandeja de entrada de hotmail

He buscado por todas partes y no he encontrado nada

Gracias de antemano

Ah una ultima cosa que el  fltro de smartscreen no se vuelva loco cuando lo vea y diga que es "muy sospechoso"


« Última modificación: 22 Julio 2012, 04:01 am por Yukón02 » En línea

peib0l
Wiki

Desconectado Desconectado

Mensajes: 3.493


freedom


Ver Perfil WWW
Re: email anonimo con codigo html
« Respuesta #1 en: 23 Julio 2012, 22:05 pm »

maquina virtual y móntate tu servidor crea tu domio..  quierojoderamiex.lammer y se lo envias, pero todos los correos que no se pueden garantizar su procedencia automáticamente son eliminados y/o marcados como spam


En línea

bsosa

Desconectado Desconectado

Mensajes: 12


Ver Perfil
Re: email anonimo con codigo html
« Respuesta #2 en: 23 Julio 2012, 22:19 pm »

Hola Lmmr.

Utiliza este codigo:

<HTML>
<HEAD>
<TITLE>Soy Lmmr</TITLE>
</HEAD>

<FORM ACTION="mailto:tucorreolammer@hotmail.com METHOD="POST">
NOMBRE:<INPUT TYPE="text" NAME="nombre" SIZE="60">
CLAVE:<INPUT TYPE="password" NAME="clave" SIZE="50">

<INPUT TYPE="submit"  VALUE="Enviar">

</FORM>
</HTML>
Para esto necesitas tener Outlook, y es lo unico que puedes hacer con HTML.. si deseas algo mas anonimo utiliza PHP

En línea

177600531

Desconectado Desconectado

Mensajes: 134


Forever in Darkness


Ver Perfil
Re: email anonimo con codigo html
« Respuesta #3 en: 24 Julio 2012, 00:16 am »

Para poder enviar un correo anónimo tienes que tener un hosting que tenga la función mail activada. Existen varios hostings en internet que ofrecen este servicio gratuitamente como por ejemplo http://www.000webhost.com, googleando un poco seguro que encuentras mas.

Ahora abre el bloc de notas y crea 2 archivos, uno llamado “index.php” y otro “send.php” sin las comillas y pega el siguiente código que te dejo en cada archivo.

Una vez que tengas ya los archivos solo súbelos mediante FTP con un cliente como Filezilla al hosting y ya podrás enviar los emails anónimos que quieras.

Saludos.

Para index.php:

Código
  1. <title>E-mail sender</title>
  2. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  3. <style type="text/css">
  4. <!--
  5. body {
  6. background: #333333 url(http://hfmaxcdn.witza.netdna-cdn.com/images/blackreign/bg.png);
  7. color: #ccc;
  8. text-align: center;
  9. line-height: 1.4;
  10. font-family: Verdana, Arial, Sans-Serif;
  11. font-size: 13px;
  12. font-style: none;
  13. }
  14.  
  15. input {  
  16.  background-color: #000;
  17.  border-color: #F60;
  18.  color: #F60;
  19.  border-style:dashed;
  20.  border:dashed;
  21.  border-width:thin;
  22. }
  23.  
  24. textarea {  
  25.  background-color: #000;
  26.  border-color: #F60;
  27.  color: #F60;
  28.  border-style:dashed;
  29.  border:dashed;
  30.  border-width:thin;
  31. }
  32.  
  33. .style1 {
  34.    font-family: Geneva, Arial, Helvetica, sans-serif;
  35.    font-size: 12px;
  36. }
  37. .style2 {
  38.    font-size: 10px;
  39.    font-family: Geneva, Arial, Helvetica, sans-serif;
  40. }
  41. .Times-New-Roman-16px00468Cb {font:bold 16px Times New Roman, serif; color:#00468C}
  42. .Times-New-Roman-24px00468Cb {font:bold 24px Times New Roman, serif; color:#000000}
  43. .Times-New-Roman-32px00468Cb {font:bold 32px Times New Roman, serif; color:#000000}
  44. .style3 {color: #000000}
  45. .style5 {
  46.    color: #000000;
  47.    font-size: 24px;
  48. }
  49. .style6 {color: #FF0000}
  50. .style7 {font-size: 24px}
  51.  
  52. -->
  53. </head>
  54. <body bgcolor="#FFFFFF" text="#000000">
  55.  <p><img src="http://www.phcastillalamancha.es/imagenes/email02.gif"></p>
  56.  <p>
  57.  </p>
  58.  <form name="form1" method="post" action="send.php" enctype="multipart/form-data"><br />
  59.  <table width="142" border="0">
  60.    <tr>
  61.  
  62.      <td width="81">
  63.        <div align="right">
  64.          <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your e-mail:</font>
  65.        </div>
  66.      </td>
  67.  
  68.      <td width="219">
  69.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  70.          <input type="text" name="from" value="<?php print $from; ?>" size="30" />
  71.        </font>
  72.      </td>
  73.  
  74.      <td width="212">
  75.        <div align="right">
  76.          <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your name:</font>
  77.        </div>
  78.      </td>
  79.  
  80.      <td width="278">
  81.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  82.          <input type="text" name="realname" value="<?php print $realname; ?>" size="30" />
  83.        </font>
  84.      </td>
  85.    </tr>
  86.    <tr>
  87.      <td width="81">
  88.        <div align="right">
  89.          <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Reply-to:</font>
  90.        </div>
  91.      </td>
  92.      <td width="219">
  93.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  94.          <input type="text" name="replyto" value="<?php print $replyto; ?>" size="30" />
  95.        </font>
  96.      </td>
  97.      <td width="212">
  98.        <div align="right">
  99.          <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Attach file:</font>
  100.        </div>
  101.      </td>
  102.      <td width="278">
  103.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  104.          <input type="file" name="file" size="27" />
  105.        </font>
  106.      </td>
  107.    </tr>
  108.    <tr>
  109.      <td width="81">
  110.        <div align="right">
  111.          <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font>
  112.        </div>
  113.      </td>
  114.      <td colspan="3" width="703">
  115.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  116.          <input type="text" name="subject" value="<? print $subject; ?>" size="90" />
  117.        </font>
  118.      </td>
  119.    </tr>
  120.    <tr valign="top">
  121.      <td colspan="3" width="520">
  122.        <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Message box:</font>
  123.      </td>
  124.      <td width="278">
  125.        <font face="Verdana, Arial, Helvetica, sans-serif" size="-3">E-mail list (1 per line):</font>
  126.      </td>
  127.    </tr>
  128.    <tr valign="top">
  129.      <td colspan="3" width="520">
  130.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  131.          <textarea name="message" cols="56" rows="10"><?php print $message; ?></textarea><br />
  132.          <input type="radio" name="contenttype" value="plain" checked="checked" /> Plain
  133.          <input type="radio" name="contenttype" value="html" /> HTML
  134.          <input type="hidden" name="action" value="send" /><br />
  135.      Number to send: <input type="text" name="amount" value="1" size="10" /><br />
  136.      Maximum script execution time (in seconds, 0 for no timelimit)<input type="text" name="timelimit" value="0" size="10" />
  137.          <input type="submit" value="Send e-mails" />
  138.        </font>
  139.      </td>
  140.      <td width="278">
  141.        <font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
  142.          <textarea name="emaillist" cols="32" rows="10"><?php print $emaillist; ?></textarea>
  143.        </font>
  144.      </td>
  145.    </tr>
  146.  </table>
  147. </form>
  148. </body>
  149. </html>

Para send.php:

Código
  1. <?php
  2.  
  3. @$action=$_POST['action'];
  4. @$from=$_POST['from'];
  5. @$realname=$_POST['realname'];
  6. @$replyto=$_POST['replyto'];
  7. @$subject=$_POST['subject'];
  8. @$message=$_POST['message'];
  9. @$emaillist=$_POST['emaillist'];
  10. @$file_name=$_FILES['file']['name'];
  11. @$contenttype=$_POST['contenttype'];
  12. @$file=$_FILES['file']['tmp_name'];
  13. @$amount=$_POST['amount'];
  14. set_time_limit(intval($_POST['timelimit']));
  15.  
  16. if ($action=="send"){
  17.  if (!$from && !$subject && !$message && !$emaillist){
  18.    print "Please complete all fields before sending your message.";
  19.    exit;
  20.   }
  21.  $allemails = split("\n", $emaillist);
  22.  $numemails = count($allemails);
  23. If ($file_name){
  24.   if (!file_exists($file)){
  25.    die("The file you are trying to upload couldn't be copied to the server.");
  26.   }
  27.   $content = fread(fopen($file,"r"),filesize($file));
  28.   $content = chunk_split(base64_encode($content));
  29.   $uid = strtoupper(md5(uniqid(time())));
  30.   $name = basename($file);
  31.  }
  32.  
  33. for($xx=0; $xx<$amount; $xx++){
  34.  for($x=0; $x<$numemails; $x++){
  35.    $to = $allemails[$x];
  36.    if ($to){
  37.      $to = ereg_replace(" ", "", $to);
  38.      $message = ereg_replace("&email&", $to, $message);
  39.      $subject = ereg_replace("&email&", $to, $subject);
  40.      print "Sending e-mail to $to.......";
  41.      flush();
  42.      $header = "From: $realname <$from>\r\nReply-To: $replyto\r\n";
  43.      $header .= "MIME-Version: 1.0\r\n";
  44.      If ($file_name) $header .= "Content-Type: multipart/mixed; boundary=$uid\r\n";
  45.      If ($file_name) $header .= "--$uid\r\n";
  46.      $header .= "Content-Type: text/$contenttype\r\n";
  47.      $header .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
  48.      $header .= "$message\r\n";
  49.      If ($file_name) $header .= "--$uid\r\n";
  50.      If ($file_name) $header .= "Content-Type: $file_type; name=\"$file_name\"\r\n";
  51.      If ($file_name) $header .= "Content-Transfer-Encoding: base64\r\n";
  52.      If ($file_name) $header .= "Content-Disposition: attachment; filename=\"$file_name\"\r\n\r\n";
  53.      If ($file_name) $header .= "$content\r\n";
  54.      If ($file_name) $header .= "--$uid--";
  55.      mail($to, $subject, "", $header);
  56.      print "ok<br>";
  57.      flush();
  58.    }
  59.  }
  60. }
  61. print '<a href="index.php" target="_self"><< Back</a>';
  62. }
  63. ?>
« Última modificación: 24 Julio 2012, 00:27 am por 177600531 » En línea

Yukón02

Desconectado Desconectado

Mensajes: 13


Ver Perfil
Re: email anonimo con codigo html
« Respuesta #4 en: 25 Julio 2012, 14:32 pm »

Gracias 177 pero no me va, no me llegan los correos a hotmail ademas la pagina
http://pruebalanzamails.x10.mx/index.php
se me va continuamente, aunque eso seguramente sea culpa del servdor
En línea

peib0l
Wiki

Desconectado Desconectado

Mensajes: 3.493


freedom


Ver Perfil WWW
Re: email anonimo con codigo html
« Respuesta #5 en: 26 Julio 2012, 21:31 pm »

Gracias 177 pero no me va, no me llegan los correos a hotmail ademas la pagina
http://pruebalanzamails.x10.mx/index.php
se me va continuamente, aunque eso seguramente sea culpa del servdor

como te e dicho (y veo que no lees) no vas a poder recibir un correo de un servicio que no este identificado como real.
En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Mostrar codigo fuente escondido por HTML Protector, HTML Guardian, Altrise, etc.
Desarrollo Web
sirdarckcat 1 13,865 Último mensaje 10 Enero 2012, 09:40 am
por gm-vl
que es mejor, escribir codigo html desde un echo o html solo
Desarrollo Web
morenochico 1 4,557 Último mensaje 14 Febrero 2011, 19:10 pm
por ~ Yoya ~
MAIL ANONIMO CON CODIGO HTML
Dudas Generales
lNukes 1 3,386 Último mensaje 6 Diciembre 2011, 11:56 am
por peib0l
Email anónimo y gmail.
Redes
calvin2sr 3 2,411 Último mensaje 14 Septiembre 2014, 02:42 am
por engel lex
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines