forked from LunaM00n/File-Upload-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (28 loc) · 755 Bytes
/
index.php
File metadata and controls
28 lines (28 loc) · 755 Bytes
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
<html>
<head>
<title>
Monkey Vulnerable Web Application
</title>
<style>
body{background-color:black;}
a{color:white}
h1{color:white;text-align:center;font-size:100}
h3{color:white;}
p{color:white;text-align:right}
img{width:100;height:100;}
.lessons{text-align:center;}
</style>
</head>
<body>
<h1>Luna's <img src="image.png"> File Upload Lab</h1>
<div class="lessons">
<h3>Playgrounds</h3>
<a href="ch1.php">Lab 1 (<b>Very Simple</b>)</a><br></li>
<a href="ch2.php">Lab 2 (<b>No PHP</b>)</a><br></li>
<a href="ch3.php">Lab 3 (<b>Something Unrestricted</b>)</a><br>
<a href="ch4.php">Lab 4 (<b>Only GIF</b>)</a><br>
<a href="ch5.php">Lab 5 (<b>No PHP extensions</b>)</a><br>
<a href="ch6.php">Lab 6 (<b>getimagesize()</b>)</a><br>
</div>
</body>
</html>