-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (57 loc) · 2.8 KB
/
about.html
File metadata and controls
69 lines (57 loc) · 2.8 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<title>Index</title>
<script>
$(document).ready(function(){
$('#assetHead').load("/assets/header.html");
});
</script>
</head>
<body>
<div id="assetHead"></div>
<!-- <object type="text/html" data="header.html"></object> -->
<!-- Begin page content -->
<div class="container-fluid jumbotron">
<h1 class="display-4">Hello, world!</h1>
<p class="lead">I didn't want to create a website. I had first used files to store all my work but it was getting more and more complicated to manage. So I created this website to keep track of what I do and to share it. I wanted my website to focus on both detection patterns and log configuration (which is not easy to find on other security website). For the moment I focus only on Windows environment. On this website you will not find a long paragraph, we go to the point.</p>
<p class="lead">Cyber Security enthusiast, reach me on LinkedIn <a href="https://www.linkedin.com/in/lucas-heiligenstein" target="_blank">Lucas Heiligenstein</a></p>
<div>
<a href="https://www.abuseipdb.com/user/118535" title="AbuseIPDB is an IP address blacklist for webmasters and sysadmins to report IP addresses engaging in abusive behavior on their networks">
<img src="https://www.abuseipdb.com/contributor/118535.svg" alt="AbuseIPDB Contributor Badge" style="width: 401px;">
</a>
</div>
<hr class="my-4">
<p>Used by this website:</p>
<ul>
<li>https://getbootstrap.com/</li>
<li>https://mdbootstrap.com/</li>
<li>https://canvasjs.com/</li>
<li>https://github.com/</li>
</ul>
<p>Important Security content:</p>
<ul>
<li>https://attack.mitre.org/</li>
<li>https://car.mitre.org/</li>
<li>https://ericzimmerman.github.io/</li>
<li>https://www.ultimatewindowssecurity.com/</li>
<li>https://docs.microsoft.com/</li>
</ul>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<link rel="stylesheet" href="/assets/dist/css/bootstrap.min.css" >
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/>
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.10.1/mdb.min.css" rel="stylesheet"/>
<script src="/assets/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>