AI درسي
  • Home
  • Artificial Intelligence
  • Cybersecurity
  • Tech Careers
  • Bookmarks
  • About
  • Contact
HomeArtificial IntelligenceCybersecurityTech CareersBookmarksAboutContact

AI درسي

A blog specializing in AI and cybersecurity. We deliver high-quality educational content.

Quick Links

  • Home
  • Artificial Intelligence
  • Cybersecurity
  • Tech Careers
  • Bookmarks
  • About
  • Contact

Contact Us

We welcome your feedback via email

[email protected]
Privacy PolicyTerms & Conditions

© 2026 AI درسي. All rights reserved.

  1. AI درسي
  2. ‹Cybersecurity
  3. ‹Cybersecurity Learning Roadmap from Zero in 2026
Cybersecurity Learning Roadmap from Zero in 2026
Cybersecurity

Cybersecurity Learning Roadmap from Zero in 2026

A practical roadmap to learn cybersecurity from scratch in 12 months with required skills, certifications, free resources, and expected salaries in the Gulf region

AI درسي·March 7, 2026·6 min read·Beginner
learn cybersecurityroadmapcareer pathcertifications
Share:

What you will learn

  • You will get a detailed 12-month learning plan starting from zero
  • You will know the skills and certifications required for each stage
  • You will discover the best free resources for every skill

Companies spend billions of dollars annually on cybersecurity — yet 3.5 million jobs remain unfilled worldwide because there is nobody to fill them. This is not a problem — it is your opportunity.

You do not need a computer science degree. You do not need prior experience. All you need is 12 months of structured learning and two hours a day. This roadmap takes you from absolute zero to a level that qualifies you for employment.


Why Cybersecurity Specifically?

Cybersecurity offers three things that rarely come together: massive demand, high salaries, and long-term job stability. The talent gap widens every year instead of shrinking, meaning anyone entering the field today has a competitive edge for years to come.

According to the (ISC)² 2025 report, the cybersecurity workforce gap grew by 12.6% compared to the previous year — despite thousands of new specialists entering every year.

Expected Salaries by Level

LevelGlobal ($/year)Saudi Arabia (SAR/month)UAE (AED/month)
Entry (0-1 year)$50,000-$65,00010,000-16,00012,000-20,000
Mid (2-4 years)$75,000-$110,00018,000-30,00022,000-40,000
Expert (5+ years)$110,000-$160,00030,000-55,00040,000-75,000

To learn more about starting your career, read How to Start Your Cybersecurity Career. For field fundamentals, begin with Cybersecurity Fundamentals.

🔴

This roadmap is designed for absolute beginners — it assumes no prior knowledge of networking, programming, or operating systems. Each stage builds on the previous one.


Phase 1: Foundations (Months 1-3)

This phase builds the foundation everything else rests on. Without a solid understanding of networking and Linux, you cannot advance in any security specialization.

Month 1: Networking

Networking is the language of cybersecurity. Every attack and every defense travels through the network. You need to understand how devices communicate and how data moves.

What you will learn:

  • The OSI model and its seven layers
  • TCP/IP, UDP, DNS, HTTP/HTTPS protocols
  • IP addresses, Subnetting, NAT
  • Network devices: Router, Switch, Firewall

Free resources:

  • Professor Messer CompTIA Network+ course (YouTube — completely free)
  • subnetting.org for Subnetting practice

Month 2: Linux

Linux is the primary operating system in cybersecurity. Most servers run Linux, and most security tools are designed for it.

What you will learn:

  • Command line (Terminal): ls, cd, cat, grep, chmod
  • User and permission management
  • Process and service management
  • Writing simple Bash scripts

Free resources:

  • linuxjourney.com (free and well-organized)
  • OverTheWire: Bandit challenge (hands-on interactive learning)

Here is a script to set up your learning environment:

#!/bin/bash
# Setting up a cybersecurity learning environment on Ubuntu/Kali
echo "=== Setting up learning environment ==="

# Update the system
sudo apt update && sudo apt upgrade -y

# Networking tools
sudo apt install -y nmap wireshark tcpdump netcat-openbsd curl wget

# Analysis tools
sudo apt install -y python3 python3-pip git vim tmux

# Basic security tools
sudo apt install -y john hashcat hydra nikto dirb

# Verification
echo "--- Verifying installation ---"
for tool in nmap wireshark python3 git john; do
    if command -v $tool &> /dev/null; then
        echo "[✓] $tool installed"
    else
        echo "[✗] $tool not found"
    fi
done
echo "=== Environment ready! ==="

Month 3: Security Basics + Python

What you will learn:

  • The CIA triad (Confidentiality, Integrity, Availability)
  • Attack types: Phishing, Malware, DDoS, SQL Injection
  • Basic encryption principles
  • Python basics for cybersecurity

According to CompTIA's report, 78% of security professionals use Python daily to automate security tasks.

💡

Do not try to learn Python deeply at this stage — learn the basics only: variables, loops, conditionals, lists, and file handling. You will go deeper later when you need to build security tools.


Phase 2: Specialization (Months 4-8)

After building the foundations, it is time to dive into cybersecurity specializations. Choose one path and focus on it.

Path 1: Penetration Testing

This path suits you if you enjoy offensive thinking — how hackers break into systems and how to discover vulnerabilities before them.

Months 4-5: Learn Reconnaissance and system scanning

  • TryHackMe platform: Pre Security path then Jr Penetration Tester
  • Tools: Nmap, Gobuster, Burp Suite

Months 6-7: Learn Exploitation

  • Hack The Box platform: easy machines first
  • Tools: Metasploit, SQLmap, ffuf

Month 8: Reporting and documentation — a skill beginners overlook but employers value highly

Path 2: Defense and Monitoring (SOC Analyst)

This path suits you if you prefer protection and monitoring — how to detect attacks and respond to them.

Months 4-5: Log Analysis and SIEM systems

  • Learn Splunk (free for education)
  • Analyze Windows and Linux logs

Months 6-7: Incident Response

  • Learn basic malware analysis
  • Tools: Volatility, YARA Rules

Month 8: Automating security tasks with Python and Bash


Phase 3: Certifications and Employment (Months 9-12)

Months 9-10: CompTIA Security+ Certification

Security+ is the most important certification for entering the job market. 72% of job postings in the Gulf region require it.

  • Exam cost: $404
  • Preparation time: two months (after completing previous phases)
  • Pass rate: 80-85% for those who completed the phases above

For details on other certifications, read Top 5 Cybersecurity Certifications for Beginners.

Month 11: Build Your Portfolio

  • Create a GitHub account and share your tools and scripts
  • Write write-ups for TryHackMe and Hack The Box challenges
  • Start a technical blog explaining what you have learned

Month 12: Apply for Jobs

Common entry-level positions:

  • SOC Analyst (Security Operations Center Analyst)
  • Junior Penetration Tester
  • Security Analyst
  • IT Security Administrator
ℹ️

Do not wait until you feel "100% ready" — that will never happen. Start applying after earning Security+ and having 2-3 projects on GitHub. Companies know that juniors learn on the job.


Complete Timeline

MonthFocusGoalResource
1NetworkingCompTIA Network+Professor Messer (YouTube)
2LinuxCommand line + permissionslinuxjourney.com + OverTheWire
3Security + PythonCIA + attack types + Python basicsTryHackMe Pre Security
4-5Specialization (offense/defense)Recon and scanningTryHackMe / Splunk
6-7Specialization (advanced)Exploitation / analysisHack The Box / YARA
8Documentation and automationReports + PythonPersonal projects
9-10Security+ certificationPass the examProfessor Messer + CertMaster
11PortfolioGitHub + blogWrite-ups + tools
12EmploymentApply for jobsLinkedIn + Indeed

Your First Step

Do not let this roadmap overwhelm you — the journey starts with a single step. Sign up for TryHackMe today (free) and complete your first learning room. It takes only 30 minutes — and you will know immediately whether this field is right for you.

المصادر والمراجع

  1. (ISC)² Cybersecurity Workforce Study 2025
  2. CompTIA: State of Cybersecurity 2025
  3. Cybersecurity Ventures: Talent Shortage Report
  4. SANS Institute: Skills Roadmap
Share:

Cybersecurity Department — AI Darsi

Information security and digital protection specialists

Published: March 7, 2026
›
Previous ArticleChatGPT vs Claude: Which One Is Best for Your Needs?
Next ArticleThe Future of Jobs and Work in 2026: AI and Remote Work
‹

Related Articles

How to Start a Cybersecurity Career from Scratch in 2026
←
Cybersecurity

How to Start a Cybersecurity Career from Scratch in 2026

3.5 million unfilled cybersecurity jobs worldwide. A complete practical guide to starting from zero: 12-month roadmap, required skills, certifications, and expected salaries

February 20, 20268 min read
Top IT Certifications in 2026: Most In-Demand & Highest Paying
←
Tech Career Path

Top IT Certifications in 2026: Most In-Demand & Highest Paying

Discover the most valuable IT certifications in 2026 from CompTIA and AWS to CISSP, with expected salaries, a practical study plan, and a comparison table to pick the right one

February 2, 20269 min read
Information Security vs. Cybersecurity: A Clear and Complete Guide
←
Cybersecurity

Information Security vs. Cybersecurity: A Clear and Complete Guide

What's the difference between information security and cybersecurity? A simplified explanation with a detailed comparison table, practical examples, technical commands, career paths, and salaries for each specialization.

March 15, 20268 min read