-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdnsexp.html
executable file
·33 lines (28 loc) · 938 Bytes
/
dnsexp.html
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
27
28
29
30
31
32
33
<?xml version="1.0" encoding="ISO-8859-1"?>
<html>
<head>
<script type="text/javascript">
function randomString(length, chars) {
var result = '';
for (var i = length; i > 0; --i) {
result += chars[Math.round(Math.random() * (chars.length - 1))];
}
return result;
}
//generate a fake 32 char GUID
var rString = randomString(32, "0123456789abcdefghijklmnopqrstuvwxyz");
_G = {IG:rString};
_G.lsUrl = "/fd/ls/l?IG=" + _G.IG;
sb_st = function(n,t){
return setTimeout(n,t);
}
sb_ct = function(n){
clearTimeout(n);
}
</script>
<script type="text/javascript" src="dnsexp.js"></script>
</head>
<body>
Hello? Yes, this is a dog.
</body>
</html>