Variable IP address capability
[CGIscriptor.git] / Private / Login.html
blob3e969e2f3bb98f318f17579dcde733c37a4f0df9
1 <html>
2 <head>
3 <title>Login</title>
4 <META CONTENT="text/ssperl; CGI='$SERVERSALT $LOGINTICKET $RANDOMSALT $REMOTE_ADDR'">
5 <SCRIPT type="text/javascript" LANGUAGE="JavaScript">
6 <SCRIPT TYPE="text/ssperl" SRC="./JavaScript/CGIscriptorSession.js"></SCRIPT>
8 // Remove EVERYTHING from Login window
9 window.onload = function() {
10 if(window.location.search)window.location.search = "";
11 var warning = document.getElementById('WARNING');
12 if(sessionStorage == null) warning.innerHTML = "Storage not supported by the browser: Upgrade your browser or set dom.storage.enabled";
13 else {
14 warning.style.color = "Black";
15 warning.innerHTML = "";
17 clear_persistent_data ();
19 </SCRIPT>
21 <script type="text/javascript">
22 <SCRIPT TYPE="text/ssperl" SRC="./JavaScript/sha.js"></SCRIPT>
23 </script>
25 </head>
26 <body>
27 <p ALIGN=RIGHT><a href="?LOGOUT">Logout</a></p>
28 <p ALIGN=RIGHT><a href="index.html">Home page</a></p>
29 <h1 align=CENTER>Example of Login procedure</h1>
30 <h2 align=CENTER><div id="WARNING" style="color: Red">You need to have JavaScript and cookies enabled to use the login system</div></h2>
31 <p>
32 Simple and very unsafe example login page for CGIscriptor.pl. The password is first hashed with the
33 site specific salt (as it is used to store the password on-site). Then it is hashed with a random,
34 one-time salt. Effectively, creating a one-time password. Only the last value is send to the server.
35 The server has both salt values stored. It will ignore anything except the username, hashed password, and
36 loginticket.
37 </p>
38 <p>
39 The Session Ticket information is stored in <a href="http://www.xul.fr/en/html5/sessionstorage.php">
40 <em>sessionStorage</em></a> with key <em>CGIscriptorPRIVATE</em>. Older browsers might not implement
41 <a href="http://www.xul.fr/en/html5/sessionstorage.php"><em>sessionStorage</em></a>, or it might be
42 turned off in the <a href="http://kb.mozillazine.org/Dom.storage.enabled"><em>dom.storage.enabled</em></a>
43 parameter.
44 </p>
45 <form method="POST" action="" id="LoginForm"
46 onSubmit='var success=check_username_password();SetSessionCookie();HashPassword("<SCRIPT TYPE="text/ssperl">
47 $RANDOMSALT</SCRIPT>");hidePasswords();success'>
48 <div style="margin-left: 30%; margin-right: 30%; text-align: right">
49 <table>
50 <tr><td>Username:</td><td><input type="text" name="CGIUSERNAME" id="CGIUSERNAME" size="60" /></td></tr>
51 <tr><td>Password:</td><td><input type="PASSWORD" name="PASSWORD" id="PASSWORD" size="60" /></td></tr>
52 <tr><td></td><td style="text-align: left"><input type="submit" value="Login" />
53 <input type="button" id="revealpassword" value="Show Passwords" onClick="this.value=togglePasswords('Hide', 'Show', this.value);true" /></td></tr>
54 </table>
55 <input type="hidden" name="SERVERSALT" id="SERVERSALT" value="<SCRIPT TYPE="text/ssperl">$SERVERSALT</SCRIPT>" />
56 <input type="hidden" name="LOGINTICKET" value="<SCRIPT TYPE="text/ssperl">$LOGINTICKET</SCRIPT>" />
57 </div>
58 </form>
59 <p>
60 There are three default test accounts, all three have password <em>testing</em>:
61 <ul>
62 <li>test: A SESSION ticket account</li>
63 <li>testip: An IPADDRESS ticket account</li>
64 <li>testchallenge: A CHALLENGE ticket account</li>
65 </ul>
66 </p>
68 <p>
69 The Salt and Ticket values are all created using SHA256 on 64 Byte of output from <em>/dev/urandom</em> in HEX.
70 </p>
71 <FONT STYLE="font-size:small">
72 <p> Example Login page for CGIscriptor.pl<br />
73 Copyright &copy; 2012 R.J.J.H. van Son<br />
74 This program is free software: you can redistribute it and/or modify
75 it under the terms of the GNU General Public License as published by
76 the Free Software Foundation, either version 3 of the License, or
77 (at your option) any later version.
78 This program is distributed in the hope that it will be useful,
79 but WITHOUT ANY WARRANTY; without even the implied warranty of
80 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
81 GNU General Public License for more details.<br />
82 You should have received a copy of the GNU General Public License
83 along with this program. If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.
84 </p>
85 <p> A JavaScript implementation of the SHA family of hashes, as defined in FIPS
86 PUB 180-2 as well as the corresponding HMAC implementation as defined in
87 FIPS PUB 198a<br />
88 Version 1.3 Copyright Brian Turek 2008-2010
89 Distributed under the BSD License<br />
90 See <a href="http://jssha.sourceforge.net/">http://jssha.sourceforge.net/</a> for more information<br />
91 Several functions taken from Paul Johnson
92 </p>
93 </FONT>
95 </body>
96 </html>