We've noticed that you've been inactive for over 10 minute(s). We've stopped running the Shoutbox due to your inactivity. If you are back again, please click the I'm Back button below.
These scripts are cool, but how come they do not work on ASTAHOST ??
Has ASTAHOST disabled mail() for security reasons ??
The telnet stuff was fantastic. Only if anyone could post the URL to view the Star Wars movie..............
if ($from == ""){ print "Your Email is required to send this form. Please click "Back" on your browser to include your email address."; } if ($subject == ""){ print "Subject of your message is required. Please click "Back" on your browser to fill in the subject."; } if ($msg == ""){ print "You have not type in your message. Please click "Back" on your browser to type in your message in the Message Box."; } else{ @mail($to, $subject, $msg, "From: ".$fromn." <".$fromm.">\r\n"); print "Your message had been sent."; } ?>
Lol... so mr Admin... what was that rule about posts having to have more than 25 words, and 3 lines ?
Removed them a few days ago
did you ever see that telne star wars film ??? i cant remember the URL, but its a telnet server, when you connect, it plays the ENTIRE star wars film in ASCII ART !!!!!
Lol... so mr Admin... what was that rule about posts having to have more than 25 words, and 3 lines ? but yeah... telnet rocks !
did you ever see that telne star wars film ??? i cant remember the URL, but its a telnet server, when you connect, it plays the ENTIRE star wars film in ASCII ART !!!!!
and if the PHP mail mail() function HAS been dissabled... then you get the chance to show off and get all Zero cool Crash OverRide Acid Burn on their asses
everyones faveorite networking tool, telnet.
telnet will connect to any tcp port on any plain text service (like smpt ) telnet sends all your keystrokes straight to the server, and echo's all the servers responces to the console.
so.. here is how to send anonymous email with telnet.
you send
open smtp_server 25
expect to recieve :
Trying ???.???.???.???...
Connected to ????????.
Escape character is '^]'.
220 ???????? ESMTP Sendmail ?version-number?; ?date+time+gmtoffset?
you send
HELO your_ip_address
expect to recieve
250 ??????? Hello local.domain.name [an_ip], pleased to meet you
you send
MAIL FROM: From@email.address
expect to recieve
250 2.1.0 ??????????... Sender ok
you send
RCPT TO: To@email.address
expect to recieve
250 2.1.0 ????????????... Recipient ok
you send
DATA
Subject:-The Subject-
The email body
as many lines as you like
the end of the email body is given by a single '.' on a lline all by itself
also, note that there has to be a blank line after the subject line.
.
expect to recieve
250 2.0.0 ???????? Message accepted for delivery
you send
QUIT
ofcourse you will have to write this into a gci script.
Hello friend its me Haseeb. Now i have a script of Anonymous Mailer. Anonymous mailer is that script through which you can send e-mail from and e-mail address or it can be any invalid e-mail address also but the friends e-mail should me valid this script consist of two pages php and html. Now the html page name as form, scripts began
Html file:
<html> <head> <!-- put your head contents here --!> </head> <body> <form name="form1" action="sendmail.php" method="post"> From mail:<br> <input name="frommail" type="text" size="30"><br> From name:<br> <input name="fromname" type="text" size="30"><br> To mail:<br> <input name="tomail" typ="text" size="30"><br> Subject:<br> <input name="subjectmail" type="text" size="30"><br> Message:<br> <textarea name="msgmail"></textarea><br> <input type="submit" name="submit" value="send mail"> </form> </body> </html>
And the second script of this Anonymous Mailer is php and it begans from now
if ($to == ""){ print "You have to state who the mail is from"; } if ($from == ""){ print "You have to state from who the mail is from"; } if ($subject == ""){ print "You have to state a subject for the mail"; } if ($msg == ""){ print "You have to state a message for the mail"; } else{ @mail($to, $subject, $msg, "From: ".$fromn." <".$fromm.">\r\n"); print "your mail has been stealthed to $to"; } ?>
copy above this and made two pages named form of the first script "html" and name for second script is "sendmail.php" for the second secont script. Upload both files to your server and ENJOY!