-
Notifications
You must be signed in to change notification settings - Fork 9
/
globalVar.html
78 lines (72 loc) · 2.2 KB
/
globalVar.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<script src="js/helperFunctions.js"></script>
</head>
<body>
<div>
<button id="login" onclick=login()>Login and get new token</button>
<br />
<code id="loginResponse"></code>
</div>
<hr />
<div>
<button id="makeRequest" onclick=makeRequest()>Make an "authenticated" request</button>
<br />
<code id="requestResponse"></code>
</div>
<hr />
<div>
<textarea rows=3 cols=100
placeholder="Enter JS to execute on this page (simulate XSS). Can you retrieve the auth token?"
id="payload"></textarea>
<br />
<button id="execute" onclick=execute()>Execute</button>
</div>
<hr />
<div>
<button onclick=clearCookies()>Clear Cookies</button>
<button onclick=clearGlobalVar()>Clear global variable</button>
<button onclick=clearLocalStorage()>Clear localStorage</button>
<button onclick=clearSessionStorage()>Clear sessionStorage</button>
<br />
<code id="clearResponse"></code>
</div>
</body>
<script>
var token; // global variable
function login() {
fetch("/api/login")
.then((res) => {
if (res.status == 200) {
return res.json()
} else {
throw Error(res.statusText)
}
})
.then(data => {
token = data.token;
logResponse("loginResponse", `Global variable set with token value: ${token}`)
})
.catch(console.error)
}
function makeRequest() {
let headers = {}
if (token) {
headers = { 'Authorization': token }
}
fetch("/api/echo", { headers: headers })
.then((res) => {
if (res.status == 200) {
return res.text()
} else {
throw Error(res.statusText)
}
}).then(responseText => logResponse("requestResponse", responseText))
.catch(console.error)
}
function execute() {
content = document.getElementById("payload").value;
eval(content);
}
</script>
</html>