-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
432 lines (397 loc) · 20 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<!--
Copyright (C) 2023 Damian Strojek, Patryk Sikora
Security Testing Environment for Web Applications
Realised as part of engineering degree for Gdansk University of Technology in Poland
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Contact Damian via [email protected] or LinkedIn @damianstrojek.
Contact Patryk via LinkedIn @patryksikora
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Materialize - Compiled and minified CSS-->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/css/materialize.min.css" />
<!-- Font Awesome Icon - CSS-->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<!-- Material Design Icons -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" />
<!-- Custom Styles-->
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="icon" href="/assets/img/icon.png" />
<title>Security of Web Apps</title>
</head>
<body>
<!-- Navigation Menu-->
<!-- Nav class 1 -->
<nav class="hide-on-small-only">
<ul class="side-nav fixed section table-of-contents">
<li class="logo">
<a id="logo-container" aria-label="Navigate to the beginning of the page" href="#intro"
class="brand-logo grey-blue-text">
<img src="/assets/img/icon.png" class="img-responsive nav-pic" alt="avatar">
</a>
</li>
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-shield-account small"></i><span>About</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Tools section" href="#tools" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-toolbox small"></i><span>Tools</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the First Module" href="#first-module"
class="waves-effect waves-dark teal-text"><i
class="mdi mdi-chart-bell-curve-cumulative small"></i><span>Brute-Force</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Second Module" href="#second-module" class="waves-effect waves-dark teal-text"><i
class="mdi-file-folder-open small"></i><span>Directory Traverse</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Third Module" href="#third-module" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-needle small"></i><span>SQLi</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Fourth Module" href="#fourth-module" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-xml small"></i><span>XSS</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-maps-local-phone small"></i><span>Contact</span></a>
</li>
</ul>
</nav>
<!-- Nav class 2 -->
<nav class="hide-on-large only trigger z-depth-1">
<a aria-label="Toggle visibility of the mobile navbar" href="#" data-activates="slide-out"
class="button-collapse"><i class="mdi-navigation-menu"></i></a>
<div class="name-title">
<a id="name" aria-label="Navigate to the beginning of the page" href="#" class="teal-text">Security</a>
<span class="black-text">Web Applications</span>
</div>
</nav>
<!-- Nav class 3 -->
<nav class="hide-on-large only">
<ul id="slide-out" class="side-nav">
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi-social-person small"></i><span>About</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Tools section" href="#tools" class="waves-effect waves-dark teal-text"><i
class="mdi-forklift small"></i><span>Tools</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the First Module" href="#first-module"
class="waves-effect waves-dark teal-text"><i
class="mdi-action-trending-up small"></i><span>Brute-Force</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Second Module" href="#second-module" class="waves-effect waves-dark teal-text"><i
class="mdi-av-my-library-books small"></i><span>Directory Traverse</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Third Module" href="#third-module" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-needle small"></i><span>SQLi</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Fourth Module" href="#fourth-module" class="waves-effect waves-dark teal-text"><i
class="mdi mdi-xml small"></i><span>XSS</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-content-mail small"></i><span>Contact</span></a>
</li>
</ul>
</nav>
<!-- Main Content-->
<main>
<!-- First Section: Heading lines and image-->
<section id="intro" class="section scrollspy full-height">
<div class="overlay"></div>
<div class="container">
<div class="col-md-9">
<div class="content section-padding valign" style="margin-left: 10%; margin-top: 50px;">
<div class="caption">
<h2>Security of <span class="teal">Web Applications</span></h2>
<h5 style="color:#fff"><span class="typing" style="font-weight: 500; color:#1e2a35"></span></h5>
<h5>Environment that allows you to experiment with the security of web applications by emulating popular types
of their vulnerabilities and interacting with them in a controlled manner.</h5>
</div>
<div class="social">
<a href="https://github.com/damianStrojek/Security-Testing-of-Web-Applications" target="_blank">
<button class="icon-btn github">
<i class="fa fa-github"></i>
</button>
</a>
</div>
<div class='buttons'>
<a href="#about" class="readme">Read More</a>
<a href="#contact" class="contactme">Contact Us</a>
</div>
</div>
</div>
</div>
</section>
<!-- Second Section: About the project -->
<section id="about" class="section scrollspy">
<h3 class="page-title white-text teal">About the project</h3>
<div class="container flow-text">
<p>
This project is carried out by Damian Strojek and Patryk Sikora in the academic years 2023-2024 at the Gdańsk
University of Technology in Poland. A didactic system for testing the security of web applications enables
various types of security tests to be carried out. This system allows to simulate attacks on web applications
and test their resistance to this type of attacks. This work aims to provide practical guidance and tools for
web application security professionals. At the same time, it is an implementation part of the diploma thesis
under the same title.
</p>
<p>
Nowadays, web applications are one of the most important communication and information exchange tools on the web.
However, with their increasing popularity, the risk of cyber attacks also increases, which in turn increases
the need to ensure the security of web applications.
</p>
</div>
</section>
<!-- Third Section: Tools needed to perform tests -->
<section id="tools" class="section scrollspy">
<h3 class="page-title white-text teal">Tools</h3>
<div class="container">
<!-- Tools -->
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Tools</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="John" src="/assets/img/john.png" class="responsive-img" />JOHN THE RIPPER
</div>
<div class="col s4 m2">
<img alt="Hashcat" src="/assets/img/hashcat-logo.png" class="responsive-img" />HASHCAT
</div>
<div class="col s4 m2">
<img alt="Burp Suite" src="/assets/img/burp-suite-logo.png" class="responsive-img" />BURP SUITE
</div>
<div class="col s4 m2">
<img alt="SQLMAP" src="/assets/img/sqlmap-logo.png" class="responsive-img" />SQLMAP
</div>
<div class="col s4 m2">
<img alt="DIRBUSTER" src="/assets/img/dirbuster.svg" class="responsive-img" />DIRBUSTER
</div>
<div class="col s4 m2">
<img alt="GoBuster" src="/assets/img/gobuster.svg" class="responsive-img" />GOBUSTER
</div>
</div>
</div>
</div>
<!-- Other -->
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Other</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="OWASP" src="/assets/img/owasp-logo.png" class="responsive-img" />OWASP
</div>
<div class="col s4 m2">
<img alt="JS" src="/assets/img/js-logo.png" class="responsive-img" />JAVA SCRIPT
</div>
<div class="col s4 m2">
<img alt="php" src="/assets/img/php-logo.png" class="responsive-img" />PHP
</div>
<div class="col s4 m2">
<img alt="docker" src="/assets/img/docker.png" class="responsive-img" />DOCKER
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Fourth Section - Modules -->
<!-- First Module -->
<section id="first-module" class="section scrollspy">
<h3 class="page-title white-text teal">Brute-Force Attacks</h3>
<div class="container flow-text">
<p>
In cryptography, a <b>brute-force attack</b> consists of an attacker submitting many passwords or passphrases
with the hope of eventually guessing correctly. The attacker systematically checks all possible passwords and
passphrases until the correct one is found.
</p>
</div>
<div class="container">
<div class="card">
<div class="card-content">
<div class="row text-center">
<div class="col s4 m6" style="margin-top: 6%;">
This module contains the theory of abusing the brute-force attack, as well as various exercises that try
to show situations that can be encountered in real life, for example, when working as a pentester.
</div>
<div class="col s4 m6">
<a class="module-link" href="./modules/module-1-brute-force/index.html"><img alt="Brute-Force"
src="/assets/img/brute-force.png" class="responsive-img"/><br>Brute-Force</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Second Module -->
<section id="second-module" class="section scrollspy">
<h3 class="page-title white-text teal">Directory Traversal Attacks</h3>
<div class="container flow-text">
<p>
A <b>directory traversal (or path traversal)</b> is a form of insecure direct object reference where insufficient
security validation or sanitization of user-supplied file names can be exploited, such that characters representing
"traverse to parent directory" are passed through to the operating system's file system API. An affected application
can be exploited to gain unauthorized access to the file system.
</p>
</div>
<div class="container">
<div class="card">
<div class="card-content">
<div class="row text-center">
<div class="col s4 m6" style="margin-top: 6%;">
Following module contains several types of Directory Traversal exploits - each of them is unique and gives
access to different type of data.
</div>
<div class="col s4 m6">
<a class="module-link" href="./modules/module-2-directory-traversal/index.html"><img alt="Brute-Force"
src="/assets/img/directory-traverse.png" class="responsive-img"/><br>Directory Traverse</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Third Module -->
<section id="third-module" class="section scrollspy">
<h3 class="page-title white-text teal">SQL Injection Attacks</h3>
<div class="container flow-text">
<p>
<b>SQL injection (SQLi)</b> is a web security vulnerability that allows an attacker to interfere with the queries
that an application makes to its database. It generally allows an attacker to view data that they are not normally
able to retrieve. In some situations, an attacker can escalate a SQL injection attack to compromise the underlying
server or other back-end infrastructure, or perform a denial-of-service attack.
</p>
</div>
<div class="container">
<div class="card">
<div class="card-content">
<div class="row text-center">
<div class="col s4 m6" style="margin-top: 6%;">
This module allows you to learn the theory about SQL Injection vulnerabilities and then practice the acquired
knowledge in 3 different exercises.
</div>
<div class="col s4 m6">
<a class="module-link" href="./modules/module-3-sql-injection/index.html"><img
alt="SQLi" src="/assets/img/sqli.png" class="responsive-img"/><br>SQLi</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Fourth Module -->
<section id="fourth-module" class="section scrollspy">
<h3 class="page-title white-text teal">XSS Attacks</h3>
<div class="container flow-text">
<p>
<b>Cross-Site Scripting (XSS)</b> is a vulnerability that lets an attacker control some of the content of a web application.
A vulnerable web app is what makes XSS attack possible. XSS vulnerabilities happen when a web app uses unfiltered user input
to build the output content displayed to its end users. This lets an attacker cotrol the output HTML and JS code, thus
attacking the application users.
</p>
</div>
<div class="container">
<div class="card">
<div class="card-content">
<div class="row text-center">
<div class="col s4 m6" style="margin-top: 6%;">
The XSS module allows you to understand how such attacks work and then practice your skills on two example scenarios.
</div>
<div class="col s4 m6">
<a class="module-link" href="./modules/module-4-xss/index.html"><img
alt="XSS" src="/assets/img/xss.png" class="responsive-img"/><br>Cross-Site Scripting</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Last Section: Contact -->
<section id="contact" class="section scrollspy full-height">
<h3 class="page-title white-text teal">Contact</h3>
<div class="container">
<p>
<a aria-label="View Damian on LinkedIn" href="http://linkedin.com/in/damianstrojek" target="_blank"
data-position="top" data-tooltip="View Damian on LinkedIn"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-linkedin"></i><a
aria-label="Patryk on LinkedIn" href="http://linkedin.com/in/damianstrojek" class="hoverline"
target="_blank">Damian Strojek LinkedIn</a>
</a>
</p>
<p>
<a aria-label="View Damian on GitHub" href="http://github.com/damianStrojek" target="_blank"
data-position="top" data-tooltip="View Damian on GitHub"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-github"></i><a
aria-label="Damian on Github" href="http://github.com/damianStrojek" class="hoverline"
target="_blank">Damian Strojek GitHub</a>
</a>
</p>
<p>
<a aria-label="View Patryk on LinkedIn" href="http://linkedin.com/in/patryksikora" target="_blank"
data-position="top" data-tooltip="View Patryk on LinkedIn"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-linkedin"></i><a
aria-label="Patryk on LinkedIn" href="http://linkedin.com/in/patryksikora"
class="hoverline" target="_blank">Patryk Sikora LinkedIn</a>
</a>
</p>
<p>
<a aria-label="View Patryk on GitHub" href="http://github.com/PatrickTheSadge" target="_blank"
data-position="top" data-tooltip="View Patryk on GitHub"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-github"></i><a
aria-label="Patryk on Github" href="http://github.com/PatrickTheSadge" class="hoverline"
target="_blank">Patryk Sikora GitHub</a>
</a>
</p>
</div>
</section>
</main>
<!-- typed.js -->
<script src="assets/vendor/typed.js/typed.min.js"></script>
<script type="text/javascript">
var typed = new Typed('.typing',{
strings: ["Cybersecurity", "Penetration Tests", "Hacking", "Exploiting"],
loop: true,
typeSpeed: 100,
backSpeed: 50
});
</script>
<!-- jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Materialize - Compiled and minified JavaScript-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/js/materialize.min.js"></script>
<script>
// Materialize - Initializers
$(document).ready(function () {
$(".scrollspy").scrollSpy()
// Initialize collapse button
$(".button-collapse").sideNav({
menuWidth: 190, // Default is 240
edge: "left", // Choose the horizontal origin
closeOnClick: true // Closes side-nav on <a> clicks, useful for Angular/Meteor
})
})
</script>
</body>
</html>