Badge | Course | Certification | Index |
---|---|---|---|
FOR610 | GIAC Reverse Engineering Malware (GREM) | Index | |
FOR508 | GIAC Certified Forensic Analyst (GCFA) | Index | |
FOR578 | GIAC Cyber Threat Intelligence (GCTI) | Index | |
SEC401 | GIAC Security Essentials (GSEC) | Index | |
SEC504 | GIAC Certified Incident Handler (GCIH) | Index | |
SEC599 | GIAC Defending Advanced Threats (GDAT) | Index | |
FOR509 | GIAC Cloud Forensics Responder (GCFR) | General ,AWS, Azure, GCP, GWS, MS-365 |
This guide will walk you through the initial setup required to start working with this repository.
First, update your package list to ensure you have access to the latest versions:
sudo apt update
Install Git, a version control system for tracking changes in source code:
sudo apt install git
Set up your Git user information. Replace Mona Lisa
with your name and [email protected]
with your email address:
git config --global user.name "Mona Lisa"
git config --global user.email "[email protected]"
Install texlive for working with TeX/LaTeX documents:
- Install the TexLive base
sudo apt-get install texlive-latex-base
- Also install the recommended and extra fonts to avoid running into the error [1], when trying to use pdflatex on latex files with more fonts.
sudo apt-get install texlive-fonts-recommended
sudo apt-get install texlive-fonts-extra
- Install the extra packages,
sudo apt-get install texlive-latex-extra
git clone <repo-url>
To build the index for 401, run:
./make.sh 401
To connect this repository with GitHub, follow these steps:
Navigate to your GitHub account settings:
- Go to Settings
- Select Developer settings
- Click on Personal access tokens
- Choose Fine-grained tokens
- Click Generate new token
The generated access token will be used as your password when prompted in the command line during operations that require GitHub authentication.
Note: Always keep your access token secure and never share it in your code or public repositories.