-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsecure-direct-object-references.php
76 lines (67 loc) · 2.27 KB
/
insecure-direct-object-references.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker Labs - Powered by Parrot CTFs</title>
<link rel="stylesheet" href="../css/style.css">
<link rel="icon" href="https://s3.parrot-ctfs.com/659123908161e9.05122583.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background-color: #142B49;
color: #fff; /* Ensuring the text is readable on the dark background */
}
.navbar {
background-color: #142B49;
width: 100%;
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .btn {
color: #fff; /* Ensuring the text and buttons are readable on the dark background */
}
.footer {
background: #142B49;
padding: 1rem 0;
width: 100%;
text-align: center;
color: #fff; /* Ensuring the text is readable on the dark background */
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100%;
}
.content {
flex: 1;
}
</style>
</head>
<body>
<?php require '../includes/nav.php'; ?>
<style>
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: auto;
right: 100%;
margin-top: -6px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-menu-left {
left: auto;
right: 100%;
}
</style>
<div class="wrapper">
<div class="content">
</div>
</div>
<?php require '../includes/footer.php'; ?>
</body>
</html>