Reading-List

A collection of articles I've read and enjoyed

If you’re looking to get a start in Cyber Security this is the page I would throw you at. Here you can find a large collection of random articles / websites / resources I’ve collected over the years, I’ve done by best to categorise them into subsections but the chaos is part of the fun. Find something you like and get lost down a rabbit hole and learn something new!

Newsletters

Cloud

Web

App Sec

Red Team

Linux

Windows

C2 Frameworks

EDR Bypass

Write ups

Blue Team

IAM

Kerberos

Crypto

Academic

Certifications

Just interesting

GoLang (Go Programming Language)

Go is current my favourite programming language and I would highly recommend everyone to give it a go! Below are a few very light and great resources to get you started in the language:

and finally

The terrible code to generate the Links on this page

for links in $(cat /tmp/links); 
do 
  title=$(curl -s $links | grep -oP '<title>\K[^<]*'); 
  echo "[${title}](${links})"; 
done | tee -a reading-list.md