fa directory created

This commit is contained in:
Maryam Behzadi
2018-05-27 18:16:37 +04:30
parent 3eb589a71c
commit 8e905d75f5
469 changed files with 17013 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!doctype html>
<html>
<body>
<h2>Cross Site Scripting Attack Test</h2>
{{if .}}
Previous User Input: <br/>
<code><pre>{{.}}</pre></code>
{{end}}
<form action="/">
<label>
User Input:
<input type="text" size=50 name="userinput" id="userinput"/>
</label>
<br/>
<label>
Escape Input:
<input type="checkbox" value="1" name="escape" id="escape"/>
</label>
<br/>
<input type="submit" id="submitBtn" value="Submit"/>
</form>
<script type="text/javascript">
var s = "<scri"+"pt>alert('pOwned by XSS.')</scri"+"pt>"
document.getElementById("userinput").value = s;
</script>
</body>
</html>