mirror of
https://github.com/cliffe/HacktivityLabSheets.git
synced 2026-02-20 13:50:46 +00:00
- Added a new Action Items Guide to provide styling classes for highlighting important sections in lab sheets. - Introduced an INSTALL.md file detailing Jekyll installation and testing procedures. - Implemented action item and warning item styles in the main stylesheet for better visual distinction. - Updated lab content to utilize new action item classes for clarity and emphasis on critical instructions. - Enhanced JavaScript functionality to process custom highlight syntax in lab content.
3.8 KiB
3.8 KiB
layout, title
| layout | title |
|---|---|
| default | 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 %}
{% else %}
{{ category.name | replace: '_', ' ' | capitalize }}
{% else %}General Labs
{% endif %}<div class="category-labs">
{% for lab in category.items %}
<div class="lab-item">
<h3><a href="{{ lab.url | relative_url }}">{{ lab.title }}</a></h3>
<p class="lab-description">{{ lab.description | default: lab.excerpt }}</p>
<div class="lab-meta">
{% if lab.difficulty %}
<span class="difficulty">Difficulty: {{ lab.difficulty }}</span>
{% endif %}
{% if lab.duration %}
<span class="duration">Duration: {{ lab.duration }}</span>
{% endif %}
{% if lab.tags %}
<div class="tags">
{% for tag in lab.tags %}
<span class="tag">{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% endfor %}
No labs are currently available. Labs will be added as they are developed.
Check back soon for new cybersecurity lab exercises!
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
- Browse the available labs above
- Click on a lab title to view the detailed instructions
- Follow the setup and execution steps provided in each lab
- 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.