-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 3.02 KB
/
index.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
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeChallenge</title>
<link href="static/css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1><a href="index.html">WeChallenge</a></h1>
<nav>
<a href="static/templates/challenge1.php">Challenge 1</a>
<a href="static/templates/challenge2.php">Challenge 2</a>
<a href="static/templates/challenge3.php">Challenge 3</a>
<a href="static/templates/challenge4.php">Challenge 4</a>
<a href="static/templates/challenge5.php">Challenge 5</a>
<a href="static/templates/challenge6.php">Challenge 6</a>
<a href="static/templates/challenge7.php">Challenge 7</a>
<a href="static/templates/challenge8.php">Challenge 8</a>
</nav>
</header>
<div class="presentation">
<div class="container">
<h2>Présentation</h2>
<p>Notre objectif est de créer une plateforme interactive et éducative où les étudiants et les professionnels peuvent mettre en pratique leurs compétences en matière de sécurité informatique. Cette plateforme proposera une série de défis de sécurité basés sur les principaux risques recensés par l'OWASP. Les participants pourront ainsi se confronter à des scénarios réalistes et apprendre à identifier, exploiter et contrer les vulnérabilités courantes dans les applications web.</p>
</div>
</div>
<div class="container">
<div id="challenge1" class="challenge">
<h2>Challenge 1</h2>
<p>Injection SQL</p>
<button>Participer</button>
</div>
<div id="challenge2" class="challenge">
<h2>Challenge 2</h2>
<p>XSS</p>
<button>Participer</button>
</div>
<div id="challenge3" class="challenge">
<h2>Challenge 3</h2>
<p>CSRF</p>
<button>Participer</button>
</div>
<!-- Ajout des autres challenges -->
<div id="challenge4" class="challenge">
<h2>Challenge 4</h2>
<p>Broken Authentification</p>
<button>Participer</button>
</div>
<div id="challenge5" class="challenge">
<h2>Challenge 5</h2>
<p>Faille XML External Entity (XXE)</p>
<button>Participer</button>
</div>
<div id="challenge6" class="challenge">
<h2>Challenge 6</h2>
<p>Insecure Direct Object References (IDOR)</p>
<button>Participer</button>
</div>
<div id="challenge7" class="challenge">
<h2>Challenge 7</h2>
<p>Insecure Deserialization</p>
<button>Participer</button>
</div>
<div id="challenge8" class="challenge">
<h2>Challenge 8</h2>
<p>Server-Side Request Forgery (SSRF)</p>
<button>Participer</button>
</div>
</div>
</body>
</html>