--- layout: default title: Hacktivity Lab Sheets --- # Hacktivity Lab Sheets Welcome to the Hacktivity SecGen lab sheets repository. This site contains hands-on cybersecurity lab exercises designed for educational purposes. ## Available Labs {% if site.labs.size > 0 %}
{% assign labs_by_category = site.labs | group_by: 'category' %} {% for category in labs_by_category %} {% if category.name != blank %}

{{ category.name | replace: '_', ' ' | capitalize }}

{% else %}

General Labs

{% endif %}
{% for lab in category.items %}

{{ lab.title }}

{{ lab.description | default: lab.excerpt }}

{% if lab.author %}
{% if lab.author.first %}Authors:{% else %}Author:{% endif %} {% if lab.author.first %} {% assign author_count = lab.author.size %} {% for author in lab.author %} {% if forloop.last and author_count > 1 %}and {% endif %}{{ author }}{% unless forloop.last %}, {% endunless %} {% endfor %} {% else %} {{ lab.author }} {% endif %}
{% endif %} {% if lab.license %}
License: {{ lab.license }}
{% endif %} {% if lab.cybok %}
CyBOK Knowledge Areas: {% for cybok_item in lab.cybok %} {{ cybok_item.ka }}: {{ cybok_item.topic }} {% endfor %}
{% endif %} {% if lab.tags %}
{% for tag in lab.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}

No labs are currently available. Labs will be added as they are developed.

Check back soon for new cybersecurity lab exercises!

{% endif %} ## About These lab sheets are designed to work with SecGen (Security Scenario Generator) and provide practical, hands-on experience with various cybersecurity concepts and techniques. ### How to Use 1. Browse the available labs above 2. Click on a lab title to view the detailed instructions 3. Follow the setup and execution steps provided in each lab 4. Complete the challenges and questions included in each exercise ### Contributing If you'd like to contribute new labs or improvements to existing ones, please see the repository's contribution guidelines.