Vulnerable-Web-Application/FileUpload/fileupload1.php

33 lines
971 B
PHP
Raw Normal View History

2018-11-29 22:04:56 +00:00
<!DOCTYPE html>
<html>
2018-11-30 10:54:57 +00:00
<head>
<link rel="shortcut icon" href="../Resources/hmbct.png" />
</head>
2018-11-29 22:04:56 +00:00
<body>
2018-11-30 00:02:20 +00:00
<div style="background-color:#c9c9c9;padding:15px;">
<button type="button" name="homeButton" onclick="location.href='../homepage.html';">Home Page</button>
<button type="button" name="mainButton" onclick="location.href='fileupl.html';">Main Page</button>
</div>
<div align="center">
2018-11-29 22:04:56 +00:00
<form action="" method="post" enctype="multipart/form-data">
2018-11-30 10:54:57 +00:00
<br>
<b>Select image : </b>
<input type="file" name="file" id="file" style="border: solid;">
2018-11-29 22:04:56 +00:00
<input type="submit" value="Submit" name="submit">
</form>
2018-11-30 00:02:20 +00:00
</div>
2018-11-29 22:04:56 +00:00
<?php
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["file"]["name"]);
move_uploaded_file($_FILES["file"]["tmp_name"], $target_file);
echo "File uploaded /uploads/".$_FILES["file"]["name"];
}
?>
</body>
</html>