-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (51 loc) · 2.17 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
---
layout: default
title: Home
ogtitle: mHACKeroni - Home
ogdescription: mHACKeroni is the result of 5 CTF Italian teams which have merged to sum their streghts and ultimately try to achieve DEFCON CTF Finals qualification.
---
<h1>Welcome!</h1>
<p><b>mhackeroni</b> is an Italian CTF team founded in 2018 by a group of friends and security enthusiasts from various academic institutions
who merged togheter to sum their streghts and ultimately achieve <a href="/archive/2018/05/24/defconctfquals-2018-report.html">DEFCON CTF Finals qualification</a>. Certified Satellite Hackers 🛰️ <a href="/archive/2023/09/01/hackasat4-finals-report.html">since 2023</a> :) </br>
<br>
<b>Our friends & affiliates:</b>
<br>
<a href="https://toh.necst.it/">@towerofhanoi</a> - <a href="https://secgroup.github.io/">@c00kiesATvenice</a> -
<a href="http://spritz.math.unipd.it/spritzers.html">@n0pwnintended </a> - <a href="https://theromanxpl0it.github.io/">@TheRomanXpl0it </a> -
<a href="https://twitter.com/aboutblankets">@aboutblankets</a>
<h1>Latest entries</h1>
{% for post in paginator.posts %}
{% if post.hidden == null %}
<article class="post">
<h2>
{{ post.date | date: "%-d %b %Y" }}
{% if post.external-url %}
<a href="{{ post.external-url }}">{{ post.title }}</a>
<a class="anchor" href="{{ post.url }}"><i class="icon-anchor"></i></a>
{% else %}
<a href="{{ post.url }}">{{ post.title }}</a>
{% endif %}
</h2>
<div class="post-content">{{ post.excerpt }}</div>
</article>
{% endif %}
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="postnavigation">
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="prev left" href="/">← Newer</a>
{% else %}
<a class="prev left" href="/page{{paginator.previous_page}}/">← Newer</a>
{% endif %}
{% else %}
<span class="nope left">← Newer</span>
{% endif %}
<span class="pages">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a class="next right" href="/page{{paginator.next_page}}/">Older →</a>
{% else %}
<span class="nope right">Older →</span>
{% endif %}
</div>
{% endif %}