Vulnerable-Web-Application/XSS/XSS_level1.php
Ömer Faruk Şenyayla cc110c3f58
Update XSS_level1.php
2018-11-29 19:59:31 +03:00

18 lines
355 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<title>XSS 1</title>
<link rel="shortcut icon" href="../Resources/hmbct.png" />
</head>
<body>
<form method="GET" action="" name="form">
<p>Adınız:<input type="text" name="username"></p>
<input type="submit" name="Gönder">
</form>
<?php
if(isset($_GET["username"]))
echo($_GET["username"])?>
</body>
</html>