| View previous topic :: View next topic |
| Author |
Message |
jagris
Joined: 12 Oct 2008 Posts: 7
|
Posted: Sun Oct 12, 2008 6:05 pm Post subject: Be careful with html |
|
|
lets say you want to make a site, you are new to html and you password protect a certain area of the site. well here is some common source code of newb html.
| Code: | <form action="/haxme/missions/1/index.php?p=login" method="post"><fieldset>
<label><input type="text" name="name" id="name" /> Name</label><br />
<label><input type="password" name="pass" id="pass" /> Password</label><br />
<input type="submit" id="submit" value="Login" />
<!-- PW File = secure/pw.txt -->
|
through some simple right clicking and checking source they have your password file. now this wont make you invisible but it helps along with other forms of protection. |
|
| Back to top |
|
 |
|
|
Christian
Joined: 13 Nov 2008 Posts: 11
|
Posted: Thu Nov 13, 2008 9:53 am Post subject: |
|
|
| Most login systems have the passwords encrypted into the database so there's no need to worry about this. |
|
| Back to top |
|
 |
|