-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 3.36 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="p-14">
<h1 class="text-2xl ml-4">Warmups</h1>
<div class="mt-2 grid md:grid-cols-2 grid-cols-1 lg:grid-cols-3 gap-4 p-4">
<!-- ----- Challenge ------ -->
<div class=" bg-gray-100 p-4 rounded hover:bg-gray-200 shadow-lg cursor-pointer">
<a href="/DOM/Level 1.html">
<div class="flex justify-between items-center">
<h2 class="font-bold">Dom XSS</h2>
<p class="bg-indigo-600 text-white px-2 rounded text-sm text-center">Level 1</p>
</div>
<p class="text-gray-600 my-4">Pop up alert to solve the challenge</p>
</a>
<a href="https://portswigger.net/web-security/cross-site-scripting" target="_blank" class="text-sm text-gray-500 mt-2 underline">Read More</a>
</div>
<!-- ------Challenge Ends Here----- -->
<!-- ----- Challenge ------ -->
<div class=" bg-gray-100 p-4 rounded hover:bg-gray-200 shadow-lg cursor-pointer">
<a href="/DOM/Level 2.html">
<div class="flex justify-between items-center">
<h2 class="font-bold">DOM XSS</h2>
<p class="bg-indigo-600 text-white px-2 rounded text-sm text-center">Level 2</p>
</div>
<p class="text-gray-600 my-4">Pop up alert to solve the challenge</p>
</a>
<a href="https://portswigger.net/web-security/cross-site-scripting" target="_blank" class="text-sm text-gray-500 mt-2 underline">Read More</a>
</div>
<!-- ------Challenge Ends Here----- -->
<!-- ----- Challenge ------ -->
<div class=" bg-gray-100 p-4 rounded hover:bg-gray-200 shadow-lg cursor-pointer">
<a href="/DOM/Level 3.html">
<div class="flex justify-between items-center">
<h2 class="font-bold">Evil Function</h2>
<p class="bg-indigo-600 text-white px-2 rounded text-sm text-center">Level 3</p>
</div>
<p class="text-gray-600 my-4">Pop up alert to solve the challenge</p>
</a>
<a href="https://portswigger.net/web-security/cross-site-scripting" target="_blank" class="text-sm text-gray-500 mt-2 underline">Read More</a>
</div>
<!-- ------Challenge Ends Here----- -->
<!-- ----- Challenge ------ -->
<div class=" bg-gray-100 p-4 rounded hover:bg-gray-200 shadow-lg cursor-pointer">
<a href="/DOM/Level 4.html">
<div class="flex justify-between items-center">
<h2 class="font-bold">Evil Function 2</h2>
<p class="bg-indigo-600 text-white px-2 rounded text-sm text-center">Level 4</p>
</div>
<p class="text-gray-600 my-4">Pop up alert to solve the challenge</p>
</a>
<a href="https://portswigger.net/web-security/cross-site-scripting" target="_blank" class="text-sm text-gray-500 mt-2 underline">Read More</a>
</div>
<!-- ------Challenge Ends Here----- -->
</div>
</div>
</body>
</html>