-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest-csrf.html
More file actions
191 lines (171 loc) · 7.53 KB
/
test-csrf.html
File metadata and controls
191 lines (171 loc) · 7.53 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSRF Protection Test</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
}
.test-section {
margin: 20px 0;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
.success {
background-color: #d4edda;
border-color: #c3e6cb;
}
.error {
background-color: #f8d7da;
border-color: #f5c6cb;
}
button {
padding: 10px 20px;
margin: 5px;
cursor: pointer;
}
.btn-success {
background-color: #28a745;
color: white;
border: none;
}
.btn-danger {
background-color: #dc3545;
color: white;
border: none;
}
pre {
background-color: #f4f4f4;
padding: 10px;
border-radius: 3px;
overflow-x: auto;
}
</style>
</head>
<body>
<h1>CSRF Protection Manual Test</h1>
<div class="test-section">
<h2>1. Get CSRF Token</h2>
<button class="btn-success" onclick="getToken()">Get Token</button>
<pre id="token-result">Click button to fetch token...</pre>
</div>
<div class="test-section">
<h2>2. Test Valid Request (with token)</h2>
<button class="btn-success" onclick="testValidRequest()">Send Valid Request</button>
<pre id="valid-result">Click button to test...</pre>
</div>
<div class="test-section">
<h2>3. Test Invalid Request (without token)</h2>
<button class="btn-danger" onclick="testInvalidRequest()">Send Invalid Request</button>
<pre id="invalid-result">Click button to test...</pre>
</div>
<div class="test-section">
<h2>4. Test Using fetchWithCsrf()</h2>
<button class="btn-success" onclick="testFetchWithCsrf()">Test fetchWithCsrf</button>
<pre id="fetch-csrf-result">Click button to test...</pre>
</div>
<script type="module">
let csrfToken = null;
// Make functions global
window.getToken = async function() {
try {
const response = await fetch('/api/csrf-token');
const data = await response.json();
csrfToken = data.csrfToken;
document.getElementById('token-result').textContent =
`✅ Success!\n\nToken: ${csrfToken}\n\nCookie should be set: __Host-csrf-token`;
document.getElementById('token-result').parentElement.classList.add('success');
} catch (error) {
document.getElementById('token-result').textContent =
`❌ Error: ${error.message}`;
document.getElementById('token-result').parentElement.classList.add('error');
}
};
window.testValidRequest = async function() {
if (!csrfToken) {
document.getElementById('valid-result').textContent =
'❌ Please get token first (click "Get Token" button above)';
return;
}
try {
// Make a POST request to a test endpoint with CSRF token
const response = await fetch('/api/csrf-token', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-csrf-token': csrfToken
},
body: JSON.stringify({ test: 'data' })
});
const statusText = response.ok ? '✅ Success' : '❌ Failed';
const data = await response.json().catch(() => ({}));
document.getElementById('valid-result').textContent =
`${statusText}\n\nStatus: ${response.status}\nResponse: ${JSON.stringify(data, null, 2)}`;
if (response.ok || response.status === 405) { // 405 is OK - just means POST not implemented on that endpoint
document.getElementById('valid-result').parentElement.classList.add('success');
} else {
document.getElementById('valid-result').parentElement.classList.add('error');
}
} catch (error) {
document.getElementById('valid-result').textContent =
`❌ Error: ${error.message}`;
document.getElementById('valid-result').parentElement.classList.add('error');
}
};
window.testInvalidRequest = async function() {
try {
// Make a POST request WITHOUT CSRF token - should fail
const response = await fetch('/api/csrf-token', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ test: 'data' })
});
const data = await response.json().catch(() => ({}));
if (response.status === 403) {
document.getElementById('invalid-result').textContent =
`✅ Correctly rejected!\n\nStatus: ${response.status}\nResponse: ${JSON.stringify(data, null, 2)}`;
document.getElementById('invalid-result').parentElement.classList.add('success');
} else {
document.getElementById('invalid-result').textContent =
`❌ Should have been rejected!\n\nStatus: ${response.status}\nResponse: ${JSON.stringify(data, null, 2)}`;
document.getElementById('invalid-result').parentElement.classList.add('error');
}
} catch (error) {
document.getElementById('invalid-result').textContent =
`❌ Error: ${error.message}`;
document.getElementById('invalid-result').parentElement.classList.add('error');
}
};
window.testFetchWithCsrf = async function() {
try {
// Dynamically import the client library
const { fetchWithCsrf } = await import('/src/lib/csrf-client.ts');
const response = await fetchWithCsrf('/api/csrf-token', {
method: 'POST',
body: JSON.stringify({ test: 'data' })
});
const statusText = response.ok ? '✅ Success' : '❌ Failed';
const data = await response.json().catch(() => ({}));
document.getElementById('fetch-csrf-result').textContent =
`${statusText}\n\nStatus: ${response.status}\nResponse: ${JSON.stringify(data, null, 2)}\n\nfetchWithCsrf automatically included the CSRF token!`;
if (response.ok || response.status === 405) {
document.getElementById('fetch-csrf-result').parentElement.classList.add('success');
} else {
document.getElementById('fetch-csrf-result').parentElement.classList.add('error');
}
} catch (error) {
document.getElementById('fetch-csrf-result').textContent =
`Note: fetchWithCsrf requires proper module setup.\n\nFor manual testing, use the buttons above.\n\nError: ${error.message}`;
}
};
</script>
</body>
</html>