forked from matthewdfuller/xss-screencapture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole.html
More file actions
26 lines (25 loc) · 677 Bytes
/
console.html
File metadata and controls
26 lines (25 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"
>
<html lang="en">
<head>
<title>XSS Screencap Console</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
function loadSource(){
$.ajax({
url: "page.html",
cache: false,
success: function(html){
$("#pageview").html(html);
},
});
}
setInterval (loadSource, 4000);
</script>
</head>
<body>
<div id="pageview">
</div>
</body>
</html>