-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy3.php
57 lines (54 loc) · 1.98 KB
/
easy3.php
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
<?php session_start();?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>angel ctf</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="css/favicon.ico">
</head>
<body>
<header><?php require "navbar.php";?></header>
<h4>
<div class="featca">
<?php
if(!(isset($_SESSION["id"]))){
echo "You must be logged in to see this page.";
}
else{
if(isset($_GET['windows8']) && $_GET['windows8'] === "bad"){
echo '<br> flag: answer go brrrrrr<br>
<form action = "process_flags.php" method = "post">
easy 3:
<input type = "text" name = "easy3">
<input type = "submit" name = "easySubmit" value = "Submit" class = "">
</form>
<br>
Medium 2 from last set?
<br>';
}
else{
echo '
<form action = "process_flags.php" method = "post">
easy 3:
<input type = "text" name = "easy3">
<input type = "submit" name = "easySubmit" value = "Submit" class = "">
</form>
<br>
Well is not this a <em>bad</em> throwback
<br>';
}
}
?>
</div>
</h4>
</body>
</html>