Vulnerable-Web-Application/FileInclusion/pages/lvl1.php
Ramazan Emre Erkan 02dac68a83
Update lvl1.php
2018-11-30 03:03:38 +03:00

32 lines
1012 B
PHP

<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="../../Resources/hmbct.png" />
<title> Level 1 </title>
</head>
<body>
<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='fileinc.html';">Main Page</button>
</div>
<div align="center"><b><h3>This is Level 1</h3></b></div>
<div align="center">
<a href=lvl1.php?file=1.php><button>Button</button></a>
<a href=lvl1.php?file=2.php><button>The Other Button!</button></a>
</div>
<?php
echo "</br></br>";
if (isset( $_GET[ 'file' ]))
{
@include($_GET[ 'file' ]);
echo"<div align='center'><b><h5>".$_GET[ 'file' ]."</h5></b></div> ";
}
?>
</body>
</html>