-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (88 loc) · 3.21 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
---
title: Tariq Hawis | Security, Open Source, and Technology
layout: default
subtitle: share my knowledge and works with the community!
permalink: "/"
hero_image: "/img/landing-hero1.webp"
image: "/img/tariqhawis-security-blog.webp"
sindex: true
---
<section class="section">
<div class="card columns is-multiline is-mobile is-centered">
<div class="column is-12 content">
<section class="hero is-light">
<div class="hero-body">
<div class="content is-medium">
<p class="has-text-weight-semibold is-size-4">Greetings,
<p>
My name is Tariq Hawis, I am a solutions architect, security leader, and writer. I have experience and passion for cyber defense, hacking, and new technologies in general.
</p><p>
I have contributions to several open source hackings and communities whether by pushing code enhancements, reporting security bugs, or providing troubleshoot answeres. Also, I like joining hack and defense contests, security/hack box challenges.
</p><p>
Throughout my career journey, I helped small and large businesses, non-profit entities and individuals avoid data breaches by investigating, evaluate and enhancing security posture with security controls, tools, and awareness.
</p>
</div>
<div class="content is-medium is-light has-text-weight-bold">
<p>Subscribe to receive my latest works, HowTo posts, Tips & tricks, and more</p>
{% include signup.html %}
</div>
<div class="content is-medium">
<p>
Contact me privately:
<a href="https://keybase.io/tariqhawis/key.asc" target="_blank" rel="noreferrer"><b>PGP public key</b></a
>
</p>
</div>
</div>
</section>
</div>
</div>
</section>
<section class="section">
<div class="card columns is-multiline">
<div class="column is-12">
<div class="content">
<h2 class="has-text-centered">~# <a class="link" href="/hacking">Latest in Hacking</a></h2>
</div>
</div>
{% for hacking in site.categories["Hacking"] limit:2 %}
<div class="column is-half">
<a href="{{ hacking.url | relative_url }}">
{% include post-card.html cat=hacking %}
</a>
</div>
{% endfor %}
</div>
</section>
<section class="section">
<div class="card columns is-multiline">
<div class="column is-12">
<div class="content">
<h2 class="has-text-centered">~# <a class="link" href="/security">Latest in Security</a></h2>
</div>
</div>
{% for security in site.categories["Security"] limit:2 %}
<div class="column is-half">
<a href="{{ security.url | relative_url }}">
{% include post-card.html cat=security %}
</a>
</div>
{% endfor %}
</div>
</section>
<section class="section">
<div class="card columns is-multiline">
<div class="column is-12">
<div class="content">
<h2 class="has-text-centered">~# <a class="link" href="/linux">Latest in Linux</a></h2>
</div>
</div>
{% for Linux in site.categories["Linux"] limit:2 %}
<div class="column is-half">
<a href="{{ Linux.url | relative_url }}">
{% include post-card.html cat=Linux %}
</a>
</div>
{% endfor %}
</div>
</section>