Create XSS_level1

This commit is contained in:
Ömer Faruk Şenyayla 2018-11-27 23:35:39 +03:00 committed by GitHub
parent 5f4589f66e
commit 3de5fb927f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
XSS/XSS_level1 Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>REFLECTED XSS 1</title>
</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>