Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 851 Bytes

File metadata and controls

34 lines (28 loc) · 851 Bytes
layout text
title T=0

SEFCOM T0

In 2022 SEFCOM gathered a rowdy group of hackers who called themselves SEFCOM T0 (T=0), hoping to find 0-days, or vulnerabilities, that have been known for time equal to zero.

Members

{% for group in site.data.t0 %}
{% if group.members %}
{% for person in group.members %}
<div class="ppl_profile">
  {% if person.site %}<a href="{{ person.site }}">{% endif %}
    <img alt="" src="{{ person.image | default: '/assets/images/no-image.jpg' }}" />
    <span>{{ person.name }}</span>
    {{ person.title }}
    {% if person.subtitle %}
    <br>
    {{ person.subtitle }}
    {% endif %}
  {% if person.site %}</a>{% endif %}
</div>
{% endfor %}
{% endif %}

{% endfor %}