- Updated author display in lab metadata to handle multiple authors correctly. - Added detailed command formatting instructions in the example highlighting guide, emphasizing the use of markdown code blocks and escaping pipe characters. - Improved consistency in lab instructions by standardizing headings and formatting for clarity. - Introduced a new lab on software vulnerabilities, exploits, and remote access payloads, providing a comprehensive overview of the topic.
7.7 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 %}
{{ 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.author %}
<div class="author">
<strong>{% if lab.author.first %}Authors:{% else %}Author:{% endif %}</strong>
{% 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 %}
</div>
{% endif %}
{% if lab.license %}
<div class="license">
<strong>License:</strong> {{ lab.license }}
</div>
{% endif %}
{% if lab.cybok %}
<div class="cybok">
<strong>CyBOK Knowledge Areas:</strong>
{% for cybok_item in lab.cybok %}
<span class="cybok-ka">{{ cybok_item.ka }}: {{ cybok_item.topic }}</span>
{% endfor %}
</div>
{% 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.
\s*\s*Tip:<\/em>\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
$1' ); // Handle > *Tip: ANYTHINGHERE* (entire content in italics) contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Tip:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/em>\s*<\/p>\s*<\/blockquote>/gi, '
$1' ); // Also handle > TIP: without italics contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Tip:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
$1' ); // Handle block-level action, warning, note, hint patterns contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Action:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
$1' ); contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Warning:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
$1' ); contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Note:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
Note: $1' ); contentBody.innerHTML = contentBody.innerHTML.replace( /\s*\s*Hint:\s*([^<]+(?:<[^>]+>[^<]*<\/[^>]+>[^<]*)*)<\/p>\s*<\/blockquote>/gi, '
Hint: $1' ); } }); </script>