NamePros.Com (http://www.namepros.com/)
-   CODE (http://www.namepros.com/code/)
-   -   Free Anonymous Email Script (http://www.namepros.com/code/226577-free-anonymous-email-script.html)

AzN 08-11-2006 03:13 AM

Free Anonymous Email Script
 
Anonymous Email Sender 0.1 Beta 2
Note: Version 0.2 Will be released in a few weeks with TRUELY Anonymously Emails. With loggings, statistics, user accounts, and address book. Stay tuned.

EDIT I have removed all phrases that raised negative comments. It is now anonymous to the fullest extent I can script it.
WARNING: Use this script at your own risk. As it stands now it can be used by a malacious user to use your server for spam.

Post any suggestions or comments below.

File: send.html
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Send Anonymous Email</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> </head> <body> <form name="SAE" method="post" action="send.php"> <br>To Email: </br> <br><input name="toemail" type="text" id="toemail" value=""></br> <br>Subject: </br> <br><input name="subject" type="text" id="subject" value=""></br> <br>Message:</br> <br> <textarea cols="50" rows="7" name="message"></textarea></br> <br><input name="submit" type="submit" value="Send!"></br> <p>Powered by <a href="http://asian.sc">Anonymous Email Sender</a></p> </body></html>


File: send.php
PHP Code:
<?php

/**************************************************  ***********************
*
*   Author   : Sonny Van
*   Package  : Anonymous Email Sender
*   Version  : 0.1 Beta 2
*   Copyright: (C) 2006 Sonny Van
*   Site     : www.sonnyvan.com
*   Email    : sonny.van[at]sonnyvan.com
*   File     : send.php
*
*   This program is free software; you can redistribute it and/or modify
*   it under the terms of the GNU General Public License as published by
*   the Free Software Foundation; either version 2 of the License, or
*   (at your option) any later version.
*
*   This program is distributed in the hope that it will be useful,
*   but WITHOUT ANY WARRANTY; without even the implied warranty of
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*   GNU General Public License for more details.
*
**************************************************  ***********************/

$toemail = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];

mail($toemail, '$subject (Sent Anonymously)', "Hello,
The following is an anonymous email.

$message

Powered by http://asian.sc - Anonymous Email Sender"
, 'From: '.$email);

echo
"Thank you, $name<br>Message sent to $toemail with the following information:</br>Subject: $subject</br>Message: $message</br><p>Powered by <a href=\"http://asian.sc\">Anonymous Email Sender</a></p>";?>

antman 08-11-2006 04:00 AM

Great script :)

In your send.php,

Quote:
"Hello, $name from $ip has sent you the following mesage:



Typo :p

raju79 08-11-2006 04:17 AM

Nice one.
Thanks for post.

Noobie 08-11-2006 05:38 AM

My 2 cents:
Read up on email injection

NeeJam 08-13-2006 11:06 PM

Thanks for this rep added, you never know when you might need it :)

mubina 08-20-2006 02:56 PM

Can someone please help me out here, what exactly would I need to do to get this on my site?

Someone please help a noob out, and ill send some NP$ when I get any!

AzN 08-20-2006 06:08 PM

All you need is to upload it.
That's ALL.
:)

Hope this helps,
Sonny

mubina 08-21-2006 01:53 PM

YaY!

I figured it out! It wasnt that hard! Thanks for everyone brute honesty.

Now if only there was a way so that it could be edited so that the actual subject line came up in the subect of the email instead of You have recieved a anonymous email.

mubina 08-23-2006 05:58 AM

Bump, anyone have any idea on what Im talking about.

Mark 08-23-2006 08:36 PM

If people think they are anonymous using anything like this , Well - Go for it.

Anyone using a script like this - or even placing it in a non-secure area of their site Should do so at their own risk ;)

AzN 08-27-2006 02:08 PM

Originally Posted by Mark
If people think they are anonymous using anything like this , Well - Go for it.


True!
Headers contain the IP of the server and person who sent it in most cases. :hehe:

Barrucadu 08-27-2006 04:25 PM

Its not anonymous at all.....

"$name from $ip has sent you the following mesage:"
and
"You may reply to $name at $email"

AzN 08-27-2006 07:27 PM

Originally Posted by Mikor
Its not anonymous at all.....

"$name from $ip has sent you the following mesage:"
and
"You may reply to $name at $email"



just remove that phrase and its anonymous.
It's up to the person who sets it up :hehe:

Noobie 08-27-2006 07:50 PM

anyone using this on a live site? Can you PM me URL

Dan 08-27-2006 08:03 PM

The subject of the email it sends is:
'You have received an anonymous email.'

Not what the person types in...

mubina 08-28-2006 03:46 AM

http://www.feeree.com/send

I tried to edit around send.php a bit and it no longer works I think!

hehe, anyone think they can help me edit around send.html as well?

Not very good at all this.

AzN 08-29-2006 09:32 PM

Originally Posted by Noobie
anyone using this on a live site? Can you PM me URL



http://www.feeree.com/send.html

Originally Posted by Dan Friedman
The subject of the email it sends is:
'You have received an anonymous email.'

Not what the person types in...



Ouch!
Didn't catch that.
Will update...TQ!

vnjmym 08-29-2006 09:35 PM

Nice one.
Thanks you for your share.

mubina 08-30-2006 05:48 AM

Asian Kid let me know when you update it, the site is working again for some reason!

I dont know what the hecks going on!

bbalegere 08-31-2006 08:16 AM

I already knew this.
I also how to customize it my needs

BTW
how do you send attachment using this script?
That is one thing that i am not aware of

Barrucadu 08-31-2006 11:17 AM

Originally Posted by AsianKid
just remove that phrase and its anonymous.
It's up to the person who sets it up :hehe:



Yeah, I know, but advertising it as an anonymous email script when its NOT anonymous is fraudulent advertising.

deu12000 08-31-2006 12:36 PM

He's giving out a free script, there's nothing fraudulent there. He just explained it incorrectly, although he explained how to make it anonymous.

NeeJam 09-02-2006 09:05 PM

Originally Posted by Mikor
Yeah, I know, but advertising it as an anonymous email script when its NOT anonymous is fraudulent advertising.



Its not fraudulent as 1 he is giving it for free and tow he has mentioed how to mkae it completly anonymous, also its anonymous ad the email address can change if you put a fake one in as well as your ip address, so it still is!

AzN 09-04-2006 10:34 PM

Originally Posted by Mikor
Yeah, I know, but advertising it as an anonymous email script when its NOT anonymous is fraudulent advertising.



I been receiving many comments on this, so now it's ANONYMOUS to the fullest extent I can script it. ;)

Anyways, I am currently writing 0.2 which will allow TRUELY Anonymous Emails again with no "Received from IP" etc. with logging, stats, user accounts, and address books options.

navjotjsingh 09-05-2006 12:00 AM

Great will wait for version 0.2 then...BTW I tried this one..and works wonderfully...but yeah message header can give out the details!


All times are GMT -7. The time now is 10:46 PM.
Site Sponsors
Advertise your business at NamePros

Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0