Vulnerable-Web-Application/XSS/XSS_level2.php
Ömer Faruk Şenyayla 62a90f45d7
Update XSS_level2.php
2018-11-30 02:44:25 +03:00

29 lines
755 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>XSS 2</title>
<link rel="shortcut icon" href="../Resources/hmbct.png" />
</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='xssmainpage.html';">Main Page</button>
</div>
<div align="center">
<form method="GET" action="" name="form">
<p>Your name:<input type="text" name="username"></p>
<input type="submit" name="submit" value="Submit">
</form>
</div>
<?php
if (isset($_GET["username"])) {
$user = str_replace("<script>", "",$_GET["username"]);
echo "Your name is "."$user";
}
?>
</body>
</html>