Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Latest commit

 

History

History
88 lines (76 loc) · 1.46 KB

learning-roadmap.md

File metadata and controls

88 lines (76 loc) · 1.46 KB

Sample Learning Roadmap

If you need a structured list of topics to learn, this is a sample training roadmap

Cryptography

  • Basics
    • Number Theory
    • Combinatorics and counting
    • Entropy
    • Algorithm correctness and efficiency
    • Computational hardness
  • Attacks
    • Caeser, Devigeneres cipher
    • Block cipher
    • AES
    • Stream cipher, RC4
    • Diffie Hellman, RSA
  • Advanced
    • Abstract algebra
    • Elliptic curves
    • Weak hashes, collisionns, preimage, HMAC
    • Quantum crypto

Forensics

Hardware

Pwn

  • Basics
    • C/C++ Programming
    • Executable files
    • Assembly
    • Debugging
    • Shellcode
  • Attacks
    • Stack overflows
    • Stack canaries
    • DEP and NX
    • ROP
  • Advanced
    • ASLR
    • Heap overflow
    • Heap exploits
    • Race conditions
    • Kernel

Reversing

  • Basics
    • C/C++
    • Executable files
    • Assembly
    • Debugging
  • Attacks
    • Data flow analysis
    • Taint analysis
  • Advaned
    • Anti debugging
    • SMT

Web

  • Client Side: HTML, CSS, JavaScript
  • Server side: Java, PHP, Python
  • Database: SQL, Mongo
  • HTTP protocol
  • Browser Proxy: Burpsuite, ZAP
  • Attacks
    • Open redirect
    • CSRF
    • XSS
    • SQL injection
    • RCE
  • Advanced
    • Bypassing Filters
    • Chaining vulnerabilities
    • Web server vulnerabilities
    • Finding logic bugs