forked from LunaM00n/File-Upload-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathch7.php
More file actions
30 lines (30 loc) · 645 Bytes
/
ch7.php
File metadata and controls
30 lines (30 loc) · 645 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
29
30
<html>
<head>
<title>
Lab 7 (You need Commands)
</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> Lab 7 (You need Commands)</h3>
<form action="ch7.php" method="POST">
<p>Command Here</p><input type="text" name="command">
<input type="submit" value=">>">
</form>
<?php
echo "<p>".shell_exec($_POST['command'])."</p>";
?>
</div>
<a href="/fileupload">Home</a>
</body>
</html>