This repository was archived by the owner on May 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathclass.TryChallengeController.php
More file actions
104 lines (96 loc) · 4.16 KB
/
class.TryChallengeController.php
File metadata and controls
104 lines (96 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/**
* Copyright (c) 2012 OWASP
*
* LICENSE:
*
* This file is part of Hackademic CMS
* (https://www.owasp.org/index.php/OWASP_Hackademic_Challenges_Project).
*
* Hackademic CMS is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* Hackademic CMS is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* Hackademic CMS. If not, see <http://www.gnu.org/licenses/>.
*
* PHP Version 5.
*
* @author Pragya Gupta <pragya18nsit@gmail.com>
* @author Konstantinos Papapanagiotou <conpap@gmail.com>
* @copyright 2012 OWASP
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
*/
require_once HACKADEMIC_PATH."model/common/class.Challenge.php";
require_once HACKADEMIC_PATH."model/common/class.User.php";
require_once HACKADEMIC_PATH."admin/model/class.ClassMemberships.php";
require_once HACKADEMIC_PATH."admin/model/class.ClassChallenges.php";
require_once HACKADEMIC_PATH."admin/controller/class.HackademicBackendController.php";
require_once HACKADEMIC_PATH."model/common/class.UserHasChallengeToken.php";
class TryChallengeController extends HackademicController
{
private static $_action_type = 'try_challenge';
public function go()
{
if (isset($_GET['id'])) {
$id = $_GET['id'];
$class_id = htmlspecialchars($_GET['class_id']);
$this->addToView('id', $id);
$challenge=Challenge::getChallenge($id);
if (self::isLoggedIn() && (self::isAdmin() || self::IsAllowed(self::getLoggedInUser(), $challenge->id))) {
$challenge_path = SOURCE_ROOT_PATH."challenges/".$challenge->pkg_name."/";
$this->addToView('pkg_name', $challenge->pkg_name);
$solution = $challenge->solution;
if (isset($_POST) && count($_POST)!=0) {
//echo '<div style = "color:red">CHALLENGE WAS SUBMITTED</div>';
}
if (!isset($_GET["path"])) {
$url = $challenge_path."index.php";
} else {
$url = $challenge_path.$_GET['path'];
}
if (isset($_GET['user']) && $_GET['user'] == self::getLoggedInUser()) {
$usr = $_SESSION['hackademic_user_id'];
$url.='?user_id='.$usr."&id=".$id;
$url.='&class_id='.$class_id;
$pair = UserHasChallengeToken::find($usr, $id, $class_id);
if ($pair === false) {
error_log("adding new token usr, id".$usr." ".$id);
Global $ESAPI_utils;
$token = $ESAPI_utils->getRandomizer()->getRandomGUID();
$token = $ESAPI_utils->getEncoder()->encodeForURL($token);
UserHasChallengeToken::add($usr, $id, $class_id, $token);
$pair = new UserHasChallengeToken();
$pair->token = $token;
}
$url .= '&token='.$pair->token;
//var_dump($pair);
}
header("Location: ".$url);
die();
} else {
error_log("oh noes, miscelaneous error (BUG)");
header("Location: ".SITE_ROOT_PATH);
die();
}
}
$this->setViewTemplate("trychallenge.tpl");
$this->generateView(self::$_action_type);
}
protected static function isAllowed($username, $challenge_id)
{
$user = User::findByUserName($username);
$dbg_array = ClassChallenges::getChallengesOfUser($user->id);
foreach ($dbg_array as $element) {
if ($element->id === $challenge_id) {
return true;
}
}
return false;
}
}