Automatically Login Bookmark

Here is a quick little trick to automate logging into online applications. Simply create an HTML file and put it on your desktop (or wherever you like), and then by opening this file, you can login to most applications automatically. All you have to change in the file is the url to post the form to and the field names of the values to post. In this simple demo the form will post the variables "username" and "password" to https://www.domain.com/login.php.

<html>
<head>
<title>Auto Login Script</title>
</head>
<body onload="document.loginform.submit();">
Logging into Application...
<form name="loginform" id="loginform" method="post"
action="https://www.domain.com/login.php">

<input type="hidden" name="username" value="admin"/>
<input type="hidden" name="password" value="secret"/>
</form>
</body>
</html>

Warning: This is not secure, as the password is stored in plain-text and is accessible to anyone with access to your computer. Please use with extreme caution.

These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • Reddit
  • Furl
  • NewsVine
  • Simpy
  • Slashdot
  • Spurl
  • StumbleUpon
  • YahooMyWeb
  • TailRank

Home | Misc | Automatically Login Bookmark