Skip to content

Indexes for SANS Courses and GIAC Certifications

Notifications You must be signed in to change notification settings

Olias/sans-indexes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SANS Course Indexes

Badge Course Certification Index
GREM FOR610 GIAC Reverse Engineering Malware (GREM) Index
GCFA FOR508 GIAC Certified Forensic Analyst (GCFA) Index
GCTI FOR578 GIAC Cyber Threat Intelligence (GCTI) Index
GSEC SEC401 GIAC Security Essentials (GSEC) Index
GCIH SEC504 GIAC Certified Incident Handler (GCIH) Index
GDAT SEC599 GIAC Defending Advanced Threats (GDAT) Index
FOR509 GIAC Cloud Forensics Responder (GCFR) General ,AWS, Azure, GCP, GWS, MS-365

Setup Instructions

This guide will walk you through the initial setup required to start working with this repository.

Step 1: Update Package List

First, update your package list to ensure you have access to the latest versions:

sudo apt update

Step 2: Install Git

Install Git, a version control system for tracking changes in source code:

sudo apt install git

Step 3: Configure 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]"

Step 4: Install TeX Live

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

Step 5: Clone the repo

git clone <repo-url>

Step 5: Build the Index for 508

To build the index for 401, run:

./make.sh 401

Connecting to GitHub

To connect this repository with GitHub, follow these steps:

Step 1: Access GitHub Developer Settings

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

Step 2: Use Access 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.


About

Indexes for SANS Courses and GIAC Certifications

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TeX 83.6%
  • Makefile 9.5%
  • Shell 6.9%