clockwerk-www – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 <?php
2  
44 vero 3 ///////////////////////////////////////////////////////////////////////////
4 // Copyright (C) Wizardry and Steamworks 2014 - License: MIT //
5 ///////////////////////////////////////////////////////////////////////////
1 eva 6  
44 vero 7 require_once 'lib/recaptchalib.php';
8 require_once 'lib/wasRemoteAdmin.php';
9  
10 define('RECAPTCHA_PRIVATE_KEY', '6Lcz9ukSAAAAAC3u90rcOIdnNnaK_JgMjrOsSzZr');
1 eva 11  
44 vero 12 $first = $_POST["first"];
13 $last = $_POST["last"];
14 $password = $_POST["password"];
1 eva 15  
44 vero 16 $resp=recaptcha_check_answer(RECAPTCHA_PRIVATE_KEY,
17 $_SERVER["REMOTE_ADDR"],
18 $_POST["recaptcha_challenge_field"],
19 $_POST["recaptcha_response_field"]);
1 eva 20  
57 vero 21 ?>
22  
23 <!DOCTYPE html>
24 <html>
25 <head>
26 <title>Clockwerk</title>
27 <link rel="stylesheet" href="css/gray.css" type="text/css" />
28 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
29 </head>
30 <body class=dark-grey>
31 <div class="center">
32 <img src="img/clockwerk-logo.png" alt="logo">
33 <h1><?php print gethostname(); ?></h1>
34 <hr>
35  
36 <?php
37  
44 vero 38 if($resp->is_valid) {
39 $req = new wasRemoteAdmin('http://127.0.0.1:10000', 'opensim');
40 $ret = $req->admin_authenticate_user($first, $last, MD5($password), '1');
41 $rep = new SimpleXMLElement($ret);
42 foreach($rep->params->param->value->struct->member as $member) {
43 if($member->name == "success" && $member->value->boolean == "0") {
44 echo 'Sorry, wrong password.';
1 eva 45 exit;
46 }
47 }
44 vero 48 $iar_path = '/var/lib/iar/'.$first.'_'.$last.'/'.$first.'_'.$last.'.iar';
49 if (file_exists($iar_path)) {
50 header('Content-Description: File Transfer');
51 header('Content-Type: application/x-gzip-compressed');
52 header('Content-Disposition: attachment; filename='.basename($iar_path));
53 header('Content-Transfer-Encoding: binary');
54 header('Expires: 0');
55 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
56 header('Pragma: public');
57 header('Content-Length: '.filesize($iar_path));
58 readfile($iar_path);
59 exit;
60 }
61 }
1 eva 62  
44 vero 63 echo '<p>Sorry, incorrect CAPTCHA. Please try again.</p>';
1 eva 64  
57 vero 65 ?>
66  
67 <p>
68 <a class="button" href="welcome.php">Main Page</a>
69 </p>
70 </div>
71 </body>
72 </html>
73