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