Create XSS_level1
This commit is contained in:
parent
5f4589f66e
commit
3de5fb927f
16
XSS/XSS_level1
Normal file
16
XSS/XSS_level1
Normal 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>
|
Loading…
Reference in New Issue
Block a user