2025-09-15 22:27:22 +01:00
# HacktivityLabSheets
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
**Contribute to Hacktivity Cyber Security Labs** - This repository contains the source lab sheets for [Hacktivity Cyber Security Labs ](https://hacktivity.co.uk ), a comprehensive cyber security education platform.
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
## 🎯 About This Repository
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
This repository serves as the **contribution hub ** for lab content used by [Hacktivity Cyber Security Labs ](https://hacktivity.co.uk ). The lab sheets are designed to work with SecGen (Security Scenario Generator) to create vulnerable virtual machines for hands-on cybersecurity education.
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
## 🌐 Live Sites
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
- **Hacktivity Cyber Security Labs**: [https://hacktivity.co.uk ](https://hacktivity.co.uk ) - The main platform where students access and complete labs
- **Lab Sheets Preview**: [https://cliffe.github.io/HacktivityLabSheets ](https://cliffe.github.io/HacktivityLabSheets ) - Preview of lab content for contributors
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
## 📚 Available Labs
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
This repository contains practical cyber security lab exercises designed for educational purposes, covering topics from Linux fundamentals to advanced exploitation techniques.
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
## 🚀 Getting Started
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### For Leaners/Hackers
1. Visit [Hacktivity Cyber Security Labs ](https://hacktivity.co.uk ) to access the full platform
2. Sign up for an account to start completing labs
3. Use the lab sheets in this repository as reference material
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### For Contributors
1. Fork this repository to contribute lab sheet improvements (and see SecGen for the software components of challenges)
2. Follow the contribution guidelines below
3. Use the automated setup script (`./start-server-github-pages.sh` ) for easy local development
4. Submit pull requests to improve existing labs or add new ones
2025-09-15 21:35:41 +00:00
## 🛠 Local Development
To run the site locally for development:
2025-09-26 16:12:28 +01:00
### Quick Start (Recommended)
```bash
# Clone the repository
git clone https://github.com/cliffe/HacktivityLabSheets.git
cd HacktivityLabSheets
# Run the automated setup script (GitHub Pages compatible)
./start-server-github-pages.sh
# Visit http://localhost:4000 in your browser
```
### Manual Setup
2025-09-15 21:35:41 +00:00
```bash
# Install Jekyll (if not already installed)
gem install bundler jekyll
# Clone the repository
git clone https://github.com/cliffe/HacktivityLabSheets.git
cd HacktivityLabSheets
# Install dependencies
bundle install
# Serve the site locally
bundle exec jekyll serve
# Visit http://localhost:4000 in your browser
```
2025-09-26 16:12:28 +01:00
## 📝 Contributing to Hacktivity Labs
We welcome contributions to improve and expand the lab content used by Hacktivity Cyber Security Labs! You can:
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
- **Improve existing labs**: Fix errors, clarify instructions, add better explanations
- **Add new labs**: Create new exercises covering additional cybersecurity topics
- **Update content**: Keep lab content current with latest tools and techniques
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### How to Contribute
#### For New Labs
2025-09-15 21:35:41 +00:00
1. Create a new markdown file in the `_labs/` directory
2. Use the following front matter template:
```yaml
---
title: "Lab X: Your Lab Title"
description: "Brief description of what the lab covers"
tags: ["tag1", "tag2", "tag3"]
---
```
3. Write your lab content using markdown
4. Test locally before submitting a pull request
2025-09-26 16:12:28 +01:00
#### For Improving Existing Labs
1. Browse existing labs in the `_labs/` directory
2. Make improvements to content, clarity, or accuracy
3. Test your changes locally
4. Submit a pull request with a clear description of improvements
2025-09-15 21:35:41 +00:00
### Lab Content Guidelines
- **Clear Objectives**: Start with what students will learn
- **Step-by-Step Instructions**: Provide detailed, testable steps
- **Questions and Analysis**: Include thought-provoking questions
2025-09-26 16:12:28 +01:00
- **Proper Highlighting**: Use the highlighting system for better readability
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### Highlighting System
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
This repository uses a special highlighting system to make lab content more readable and actionable. See the [Example Highlighting Guide ](_labs/example_highlighting_guide.md ) for comprehensive instructions on:
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
- How to properly highlight actions, tips, hints, and warnings
- Formatting commands and code blocks
- Using VM context indicators
- Creating effective question and flag blocks
- Best practices for lab sheet formatting
**Important**: When contributing to existing labs, follow the highlighting patterns established in the guide to maintain consistency across all lab sheets.
2025-09-15 21:35:41 +00:00
## 📄 License
This project is licensed under the GPL-3.0 License - see the [LICENSE ](LICENSE ) file for details.
2025-09-26 16:12:28 +01:00
## 🤝 Support & Community
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### For Learners / Hackers
- Visit [Hacktivity Cyber Security Labs ](https://hacktivity.co.uk ) for the full learning platform
- Check lab instructions carefully before seeking help
- Join the Hacktivity Discord server for community support
2025-09-15 21:35:41 +00:00
2025-09-26 16:12:28 +01:00
### For Contributors
- Open an issue on GitHub for bugs or feature requests
- Join discussions about lab improvements
2025-09-15 21:35:41 +00:00
## 🎯 About SecGen
2025-09-26 16:12:28 +01:00
Hacktivty is powerd by our open source [SecGen (Security Scenario Generator) ](https://github.com/cliffe/SecGen ), which creates vulnerable virtual machines for security education and training.