|
|
||
|---|---|---|
| .github/workflows | ||
| PROJECTS | ||
| SYNOPSES | ||
| .gitignore | ||
| .pre-commit-config.yaml | ||
| README.md | ||
README.md
22 Cybersecurity Projects & 10 Certification Roadmaps by role🧙♂️
2 of these projects I've fully built for you, with full source code and documentation so you can clone, learn, and customize!*
View complete projects: projects/
As time goes on I will fully build each and everyone of these projects so all 22 are available with full source code and documentation.
Table of Contents
- Projects
- Certification Roadmaps by Role
- Cybersecurity Tools
- Study Platforms & Courses
- Certifications & Exam Prep
- YouTube Channels & Videos
- Reddit Communities
- Security Frameworks
- Industry Resources
- Cloud Certifications
- CISSP Resources
- LinkedIn Professionals
- Additional Learning Resources
Project Ideas 👻
🔰 Beginner Projects
Simple Port Scanner
Build a Python script using the socket library to test common ports (22, 80, 443, 3306, etc.) on a target IP. Implement threading or asyncio to scan multiple ports concurrently for speed. Add service detection by analyzing banner responses from open ports.
Keylogger
Use Python's pynput library to capture keyboard events and log them to a local file with timestamps. Include a toggle key (like F12) to start/stop logging. Important: Add clear disclaimers and only test on systems you own.
Caesar Cipher Encoder/Decoder
Create a CLI tool that shifts characters by a specified number (the "key") to encrypt/decrypt text. Implement both encryption and brute-force decryption (try all 26 possible shifts). Bonus: Add support for preserving spaces and punctuation.
DNS Lookup Tool
Use Python's dnspython library to query different DNS record types (A, AAAA, MX, TXT, NS, CNAME). Display results in a clean table format with color coding. Add reverse DNS lookup functionality.
Simple Vulnerability Scanner
Build a script that checks installed software versions against a CVE database or uses pip-audit for Python packages. Parse system package managers (apt, yum, brew) to list installed software. Flag packages with known vulnerabilities and suggest updates.
Metadata Scrubber Tool
Build a tool that removes metadata from files (images, PDFs, Office docs) to protect privacy. Extract and display EXIF data, GPS coordinates, author info, and edit history. Support batch processing and create sanitized copies. Add detection for hidden data in file headers and warn users about information leakage risks.
Network Traffic Analyzer
Use scapy to capture packets on local network and display protocol distribution, top talkers, and bandwidth usage. Filter by protocol (HTTP, DNS, TCP, UDP) and visualize data with simple bar charts. Add export to CSV functionality.
Hash Cracker
Build a basic hash cracking tool that attempts to match MD5/SHA1/SHA256 hashes against wordlists. Implement both dictionary and brute-force modes. Add salted hash support and performance metrics (hashes per second).
Steganography Tool
Hide secret messages inside image files using LSB (Least Significant Bit) steganography. Support PNG and BMP formats. Include both encoding and decoding functionality with password protection option.
MAC Address Spoofer
Create a script to change network interface MAC addresses on Linux/Windows. Include validation, backup of original MAC, and automatic restoration. Add vendor lookup to generate realistic MAC addresses.
File Integrity Monitor
Monitor specified directories for file changes using checksums (MD5/SHA256). Log all modifications, additions, and deletions with timestamps. Send alerts when critical system files are modified.
Basic Web Scraper for Security News
Scrape cybersecurity news from sites like Krebs on Security, The Hacker News, and Bleeping Computer. Parse articles, extract CVEs, and store in a database. Create a simple dashboard to view latest threats.
Phishing URL Detector
Analyze URLs for common phishing indicators (suspicious TLDs, typosquatting, URL shorteners). Check against safe browsing APIs (Google Safe Browsing). Display risk score with detailed analysis.
SSH Brute Force Detector
Monitor auth.log or secure log files for failed SSH login attempts. Detect brute force patterns and automatically add offending IPs to firewall rules. Send email alerts when attacks detected.
WiFi Network Scanner
Scan for nearby wireless networks and display SSIDs, signal strength, encryption types, and connected clients. Identify potentially rogue access points and weak encryption (WEP, WPA).
Base64 Encoder/Decoder with Detection
Create a tool that encodes/decodes Base64, Base32, and hex. Automatically detect encoding type. Add support for URL encoding and HTML entity encoding.
Simple Firewall Log Parser
Parse firewall logs (iptables, UFW, pfSense) and generate reports on blocked connections. Identify top attacking IPs, most targeted ports, and attack patterns. Visualize with graphs.
ARP Spoofing Detector
Monitor network for ARP spoofing attacks by tracking MAC-to-IP mappings. Alert when duplicate IP addresses or MAC address changes detected. Log all ARP traffic for analysis.
Windows Registry Change Monitor
Track changes to Windows registry keys and values. Focus on common persistence locations (Run keys, Services, Scheduled Tasks). Alert on suspicious modifications.
Simple Ransomware Simulator
Educational tool that demonstrates file encryption without actual harm. Encrypt test files in isolated directory with strong encryption. Include decryption capability and educational warnings.
🔶 Intermediate Projects
Reverse Shell Handler
Create a server that listens for incoming reverse shell connections using Python sockets. Implement command execution, file upload/download, and session management for multiple clients. Use cmd2 or similar library for a clean CLI interface.
SIEM Dashboard
Build a Flask/FastAPI backend that ingests logs via syslog or file parsing, then visualize with a React frontend using Chart.js or Recharts. Store events in SQLite/PostgreSQL and implement basic correlation rules (e.g., "5 failed logins in 1 minute"). Add filtering by severity, source IP, and time range.
Threat Intelligence Aggregator
Use APIs from threat feeds (AbuseIPDB, VirusTotal, AlienVault OTX) to collect IOCs (IPs, domains, file hashes). Store in a database with deduplication and enrich with WHOIS/geolocation data. Create a simple UI to search IOCs and view threat scores.
OAuth Token Analyzer
Build a tool that decodes JWT tokens, validates signatures, and checks for common vulnerabilities (weak secrets, algorithm confusion, expired claims). Use PyJWT or similar library and add support for multiple signature algorithms (HS256, RS256). Display token payload in formatted JSON with security warnings.
Web Application Vulnerability Scanner
Create an async Python scanner using httpx that crawls a target website and tests for XSS (reflected/stored), SQLi (error-based), and CSRF (missing tokens). Implement a plugin architecture so tests are modular and easy to add. Generate HTML reports with vulnerability details and remediation advice.
Encrypted Chat Application
Build a peer-to-peer chat using WebSockets with end-to-end encryption via the cryptography library (Fernet or RSA+AES). Implement key exchange using Diffie-Hellman. Add a simple React frontend with message history and user authentication.
DDoS Mitigation Tool
Create a network monitor that detects traffic spikes using packet sniffing (Scapy) and implements rate limiting with iptables or similar. Add anomaly detection by establishing baseline traffic patterns. Include alerts via email/webhook when attacks detected.
Container Security Scanner
Scan Docker images by parsing Dockerfiles for insecure practices (running as root, hardcoded secrets) and checking base image versions against vulnerability databases. Use Docker API to inspect running containers for exposed ports and mounted volumes. Output findings in JSON with severity ratings.
API Rate Limiter
Build middleware that implements token bucket or sliding window rate limiting for APIs. Support per-user, per-IP, and global limits. Include Redis backend for distributed rate limiting across multiple servers.
Wireless Deauthentication Detector
Monitor WiFi networks for deauthentication attacks using packet sniffing. Alert when abnormal deauth frames detected. Track affected clients and potential attacker locations.
Active Directory Enumeration Tool
Enumerate AD users, groups, computers, and permissions using LDAP queries. Identify privileged accounts, stale accounts, and misconfigurations. Generate visual diagrams of AD structure.
Binary Analysis Tool
Disassemble executables and analyze for suspicious patterns. Extract strings, identify imported functions, and detect packing/obfuscation. Support PE, ELF, and Mach-O formats.
Network Intrusion Prevention System
Real-time packet inspection using Snort rules or custom signatures. Automatically block malicious traffic using firewall integration. Dashboard for viewing blocked threats and rule management.
Password Policy Auditor
Audit Active Directory or local password policies against security best practices. Test for weak passwords using common patterns. Generate compliance reports and recommendations.
Cloud Asset Inventory Tool
Automatically discover and catalog all resources across AWS, Azure, and GCP. Track changes over time, identify untagged resources, and calculate costs. Export to CSV/JSON.
OSINT Reconnaissance Framework
Aggregate data from public sources (WHOIS, DNS, social media, breached databases). Automate information gathering for penetration testing. Generate comprehensive target profiles.
SSL/TLS Certificate Scanner
Scan domains for SSL/TLS misconfigurations (expired certs, weak ciphers, missing HSTS). Check against best practices (Mozilla SSL Config). Alert on vulnerabilities like Heartbleed.
Mobile App Security Analyzer
Decompile Android APKs and iOS IPAs to analyze security. Detect hardcoded secrets, insecure data storage, and vulnerable libraries. Generate OWASP Mobile Top 10 compliance reports.
Automated Backup Integrity Checker
Verify backup files aren't corrupted using checksums. Test restoration process automatically. Alert if backups fail validation or haven't run recently.
Web Application Firewall (WAF)
Build a reverse proxy that filters HTTP requests for malicious patterns. Block SQL injection, XSS, and path traversal attempts. Include whitelist/blacklist rules and logging.
Privilege Escalation Path Finder
Analyze Linux/Windows systems for potential privilege escalation vectors. Check for SUID binaries, weak permissions, and kernel exploits. Generate attack path diagrams.
Network Baseline Monitor
Establish normal network behavior patterns (traffic volume, protocol distribution, top talkers). Alert on deviations that could indicate compromises or attacks.
Docker Security Audit Tool
Scan Docker environments for security issues (privileged containers, exposed ports, outdated images). Check against CIS Docker Benchmark. Generate remediation reports.
🔴 Advanced Projects
Custom Exploit Development Framework
Build a modular framework in Python where exploits are plugins (one file per vulnerability). Include payload generators, shellcode encoders, and target validation. Implement a Metasploit-like interface with search, configure, and execute commands.
AI-Powered Threat Detection System
Train a machine learning model (Random Forest or LSTM) on network traffic data (CICIDS2017 dataset) to classify normal vs. malicious behavior. Use feature engineering on packet metadata (packet size, timing, protocols). Deploy model with FastAPI for real-time inference on live traffic.
Full-Stack Bug Bounty Platform
Create a web app with user roles (researchers, companies), vulnerability submission workflow, and reward management. Implement severity scoring (CVSS), status tracking, and encrypted communications. Use React frontend, FastAPI/Django backend, PostgreSQL database, and S3 for file uploads.
Cloud Security Posture Management (CSPM)
Build a tool using boto3 (AWS), Azure SDK, and Google Cloud SDK to scan for misconfigurations (public S3 buckets, overly permissive IAM roles, unencrypted storage). Implement compliance checks against CIS benchmarks. Generate executive dashboards showing risk scores and remediation priorities.
Malware Analysis Platform
Create a sandbox using Docker or VMs where suspicious files are executed in isolation while monitoring API calls, network traffic, and file system changes. Implement static analysis (strings, PE headers, YARA rules) and dynamic analysis (behavior tracking). Generate detailed reports with IOCs extracted.
Quantum-Resistant Encryption Implementation
Implement post-quantum algorithms like Kyber (key exchange) or Dilithium (digital signatures) using existing libraries (liboqs-python). Build a file encryption tool that uses hybrid encryption (classical + quantum-resistant). Benchmark performance against traditional RSA/AES and document the security rationale.
Zero-Day Vulnerability Scanner
Fuzzing framework that automatically discovers bugs in applications. Implement coverage-guided fuzzing using AFL or LibFuzzer. Triage crashes and generate proof-of-concept exploits.
Distributed Password Cracker
Coordinate password cracking across multiple machines using GPU acceleration. Support distributed workloads with job queuing. Dashboard for monitoring progress and performance.
Kernel Rootkit Detection System
Detect kernel-level rootkits by comparing system calls, loaded modules, and memory structures. Use volatility framework for memory analysis. Alert on hidden processes or drivers.
Blockchain Smart Contract Auditor
Static analysis tool for Solidity smart contracts detecting vulnerabilities (reentrancy, integer overflow, access control). Integrate with Mythril and Slither. Generate security reports.
Adversarial ML Model Attacker
Generate adversarial examples to fool ML-based security systems. Implement attacks like FGSM, DeepFool, and C&W. Test robustness of image classifiers and malware detectors.
Advanced Persistent Threat Simulator
Simulate multi-stage APT attacks with C2 infrastructure, lateral movement, and data exfiltration. Support various persistence mechanisms and evasion techniques. Generate attack reports.
Hardware Security Module (HSM) Emulator
Software emulation of HSM for cryptographic operations. Implement secure key storage, signing, and encryption. Support PKCS#11 interface for application integration.
Network Covert Channel Framework
Exfiltrate data using DNS queries, ICMP packets, or HTTP headers. Implement encoding schemes to hide data in legitimate traffic. Measure detection rates against common DLP solutions.
Automated Penetration Testing Platform
Orchestrate full penetration tests including reconnaissance, vulnerability scanning, exploitation, and post-exploitation. Generate executive and technical reports. Support multiple target types.
Supply Chain Security Analyzer
Analyze software dependencies for vulnerabilities and malicious packages. Detect typosquatting, dependency confusion, and compromised packages. Monitor for suspicious updates in CI/CD pipelines.
Certification Roadmap by Role 
1. SOC Analyst
| Level | Certification | Organization | Link |
|---|---|---|---|
| Entry | Security+ | CompTIA | Website |
| Core | CySA+ | CompTIA | Website |
| Intermediate | GCIH (Certified Incident Handler) | GIAC | Website |
| Intermediate | CEH (Certified Ethical Hacker) | EC-Council | Website |
| Advanced | GCIA (Certified Intrusion Analyst) | GIAC | Website |
| Senior/Management | CISSP | (ISC)² | Website |
2. Penetration Tester
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Entry-Level Pentest | PenTest+ | CompTIA | Website |
| Intermediate | CEH (Certified Ethical Hacker) | EC-Council | Website |
| Advanced | OSCP (Gold Standard) | Offensive Security | Website |
| Expert | OSEP | Offensive Security | Website |
| Expert | GXPN (Exploit Researcher) | GIAC | Website |
3. Security Engineer
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Intermediate | CySA+ | CompTIA | Website |
| Advanced | SecurityX (formerly CASP+) | CompTIA | Website |
| Advanced/Expert | CISSP | (ISC)² | Website |
| Expert (Cloud-focused) | CCSP | (ISC)² | Website |
4. Incident Responder
| Level | Certification | Organization | Link |
|---|---|---|---|
| Entry | Security+ | CompTIA | Website |
| Core | CySA+ | CompTIA | Website |
| Core IR Cert | GCIH (Certified Incident Handler) | GIAC | Website |
| Forensics/Advanced | GCFA (Certified Forensic Analyst) | GIAC | Website |
| Malware Analysis/Expert | GREM (Reverse Engineering Malware) | GIAC | Website |
5. Security Architect
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Advanced | SecurityX (formerly CASP+) | CompTIA | Website |
| Architect/Management | CISSP (Required) | (ISC)² | Website |
| Cloud Architecture | CCSP | (ISC)² | Website |
| Security Architecture Framework | SABSA | SABSA Institute | Website |
| Enterprise Architecture | TOGAF | The Open Group | Website |
6. Cloud Security Engineer
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| AWS Cloud Security | AWS Security Specialty | AWS | Website |
| Azure Cloud Security | Azure Security Engineer | Microsoft | Website |
| Vendor-Neutral | CCSK | Cloud Security Alliance | Website |
| Advanced | CCSP | (ISC)² | Website |
| Advanced Practice | SecurityX (formerly CASP+) | CompTIA | Website |
| Expert/Management | CISSP | (ISC)² | Website |
7. GRC Analyst/Consultant
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Audit Focused | CISA (Certified Information Systems Auditor) | ISACA | Website |
| Risk Management | CRISC (Risk and Information Systems Control) | ISACA | Website |
| Advanced | CISSP | (ISC)² | Website |
| Compliance-Heavy | ISO 27001 Lead Auditor | PECB (and others) | Website |
8. Threat Intelligence Analyst
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Core | CySA+ | CompTIA | Website |
| Cyber Threat Intelligence | GCTI | GIAC | Website |
| Intrusion Analysis | GCIA | GIAC | Website |
| OSINT (Optional) | GOSI | GIAC | Website |
| OSINT (Optional) | C|OSINT | McAfee Institute | Website |
9. Application Security
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Security+ | CompTIA | Website |
| Foundation/Core | CEH (Certified Ethical Hacker) | EC-Council | Website |
| Foundation/Core | CySA+ | CompTIA | Website |
| Secure Software Lifecycle | CSSLP | (ISC)² | Website |
| Web App Exploitation | OSWE | Offensive Security | Website |
| Web App Pentest | GWAPT | GIAC | Website |
10. Network Engineer (Security-Focused)
| Level | Certification | Organization | Link |
|---|---|---|---|
| Foundation | Network+ | CompTIA | Website |
| Foundation | Security+ | CompTIA | Website |
| Associate | CCNA (Cisco Certified Network Associate) | Cisco | Website |
| Advanced | CCNP Security | Cisco | Website |
| Architect/Management | CISSP | (ISC)² | Website |
Cybersecurity Learning Resources
A collection of tools, courses, frameworks, and educational resources for cybersecurity professionals and learners at all levels.
Table of Contents
- Cybersecurity Tools
- Study Platforms & Courses
- Certifications & Exam Prep
- YouTube Channels & Videos
- Reddit Communities
- Security Frameworks
- Industry Resources
- Cloud Certifications
Cybersecurity Tools
Reconnaissance & Scanning
- Nmap - Network mapper and port scanner
- Nessus - Vulnerability scanner
- Nikto - Web server scanner
- Searchsploit - Exploit database CLI
- theHarvester - Information gathering tool
- Amass - Subdomain enumeration
- Sublist3r - Subdomain finder
- Recon-ng - Web reconnaissance framework
- Fierce - DNS scanner
Web Application Testing
- Burp Suite - Web vulnerability scanner
- OWASP ZAP - Web application security scanner
- Nikto - Web server scanner
- SQLmap - SQL injection testing
- Wfuzz - Web fuzzer
- Gobuster - URI/DNS/Vhost brute forcing
- SkipFish - Active web application scanner
- Wapiti - Web vulnerability scanner
- Arachni - Web application security scanner
- Nuclei - Template-based scanning
- Maltego - OSINT & data mining
Network & Wireless
- Wireshark - Network protocol analyzer
- Bettercap - Network attack framework
- Responder - LLMNR/NBT-NS poisoner
- Ettercap - Man-in-the-middle framework
- SSLstrip - SSL stripping attack
- Aircrack-ng - Wireless network auditing
- Kismet - Wireless network detector
- mitmproxy - HTTP/HTTPS proxy
- Fiddler - Web debugging proxy
- Yersinia - Layer 2 attacks
Exploitation & Post-Exploitation
- Metasploit - Penetration testing framework
- Hydra - Password cracking
- Ncrack - Network authentication cracker
- CrackMapExec - Post-exploitation framework
- Evil-WinRM - WinRM shell
- Empire - PowerShell post-exploitation
- Mimikatz - Credential extraction
- Shellter - Dynamic shellcode injection
- BeEF - Browser exploitation framework
- RouterSploit - Router exploitation framework
- Legion - Automated pentest tool
- Social-Engineer Toolkit (SET) - Social engineering attacks
Cryptography & Analysis
- John the Ripper - Password cracker
- Hashcat - GPU-accelerated hash cracking
- Ghidra - Reverse engineering
- Radare2 - Binary analysis framework
- Binwalk - Binary file analysis
Forensics & Malware Analysis
- Volatility - Memory forensics
- Cuckoo Sandbox - Malware analysis sandbox
- Impacket - Network protocol library
Monitoring & Defense
- Suricata - Network IDS/IPS
- OSSEC - Host-based intrusion detection
- Greenbone Vulnerability Manager - Vulnerability scanning
Code Security
- Snyk - Dependency vulnerability scanner
- OWASP Dependency-Check - Dependency checker
- Semgrep - Static analysis tool
- Detectify - Web security platform
Intelligence & Recon
- Shodan - Internet search engine
- Offensive Security Exploit Database - Exploit database
- BloodHound - Active Directory analysis
- EyeWitness - Screenshot capture tool
Study Platforms & Courses
Udemy CompTIA Courses
- CompTIA Security+ (SY0-701) Complete Course & Exam
- CompTIA Security+ (SY0-701) Practice Exams Set 1
- CompTIA Security+ (SY0-701) Practice Exams Set 2
- TOTAL: CompTIA Security+ Certification Course + Exam SY0-701
- CompTIA A+ Core 1 (220-1101) Complete Course & Practice Exam
- CompTIA A+ Core 2 (220-1102) Complete Course & Practice Exam
- CompTIA A+ (220-1101) Core 1 Practice Exams
- CompTIA A+ (220-1102) Core 2 Practice Exams
- CompTIA A+ Core 1 & Core 2 - IT Cert Doctor - 2024
- CompTIA Network+ (N10-009) Full Course & Practice Exam
- CompTIA Network+ (N10-009) 6 Full Practice Exams Set 1
- CompTIA Network+ (N10-009) 6 Full Practice Exams Set 2
- CompTIA CySA+ (CS0-003) Complete Course & Practice Exam
- CompTIA CySA+ (CS0-003) Practice Exams
- CompTIA PenTest+ (PT0-003) Full Course & Practice Exam
- CompTIA PenTest+ (PT0-003) 6 Practice Exams
- CompTIA SecurityX (CAS-005) Complete Course & Practice Exam
- CompTIA SecurityX (CAS-005) Practice Exam Prep
- CompTIA Linux+ (XK0-005) Complete Course & Exam
- CompTIA Linux+ (XK0-005) Practice Exams & Simulated PBQs
Udemy Other Security Courses
- The Complete Cyber Security Course : Hackers Exposed!
- The Complete Cyber Security Course : Network Security!
- The Complete Cyber Security Course : End Point Protection!
- Complete Ethical Hacking & Cyber Security Masterclass Course
- Implementing the NIST Cybersecurity Framework (CSF)
- ISC2 CISSP Full Course & Practice Exam
- ISC2 CISSP 6 Practice Exams
- The Complete Certified in Cybersecurity CC course ISC2 2024
Free Learning Platforms
- Cybrary - Free cybersecurity courses
- TryHackMe - Interactive hacking challenges
- Hack The Box - Penetration testing labs
- HackTheBox Academy - Structured learning paths
- SANS Cyber Aces Online - Free tutorials
- Coursera - University-level courses
- edX Cybersecurity Programs - Professional certificates
- freeCodeCamp - Free comprehensive courses
- Codecademy Cybersecurity - Interactive coding
Premium Platforms
- Pluralsight - Tech skill development
- CBT Nuggets - Video training
- LinkedIn Learning - Professional development
- INE Security Courses - Cybersecurity specialization
- Infosec Skills - Hands-on labs
- Offensive Security (OffSec) - Advanced training
- TestOut - Certification prep
Certifications & Exam Prep
CompTIA Exam Objectives
- A+ Core 1 (220-1101)
- A+ Core 2 (220-1102)
- Network+ (N10-009)
- Security+ (SY0-701)
- CySA+ (CS0-003)
- PenTest+ (PT0-003)
- SecurityX (CAS-005)
- Linux+ (XK0-005)
- Cloud+ (CV0-003)
- Data+ (DA0-001)
- Server+ (SK0-005)
Practice Test Resources
- CertNova - Free practice tests
- ExamCompass - Practice exams
- ExamDigest - Exam resources
- Mike Meyers Practice Tests - Total Tester
- Quizlet - Flashcards & quizzes
Exam Vouchers & Official Resources
- CompTIA Student Discount - 50% vouchers for students
- Official CompTIA Resources - Study materials
- CompTIA.org - Main website
Study Guides & Books
- SYBEX CompTIA Books - Official study guides
- Notes: CompTIA A+, Network+ and Security+ - Study notes collection
YouTube Channels & Videos
Top Cybersecurity Channels
- Professor Messer - CompTIA certification prep
- NetworkChuck - Networking & security
- PowerCert Animated Videos - Educational animations
- HackerSploit - Ethical hacking tutorials
- Cyberkraft - Cybersecurity education
- howtonetwork - Network fundamentals
- CBT Nuggets - Professional training
- Eli the Computer Guy - IT & networking
- The Cyber Mentor - Ethical hacking
- ITProTV - IT certifications
- freeCodeCamp.org - Free comprehensive courses
- With Sandra - Career & tech
- Andrew Huberman - Learning & productivity science
- Tech with Jono - Tech tutorials
- Practical Networking - Networking fundamentals
- David Bombal - Cisco & networking
- John Hammond - Hacking & security
- LiveOverflow - CTF & binary exploitation
- PwnFunction - Security concepts
- SecurityWeekly - Security news & updates
- BlackHat Official - Security conferences
- DEFCONConference - Hacker conference talks
Featured Video Playlists & Courses
- CompTIA A+ Full Course (31+ Hours)
- CompTIA Network+ Full Course
- CompTIA Security+ SY0-701 Full Course
- CompTIA CySA+ 2024 Crash Course (10+ Hours)
- CASP+ Course
- Ethical Hacking 15 Hours Course
- Complete Ethical Hacking 16 Hours
- Python Full Course for Free
- Subnetting Mastery
- NMAP Full Guide
Learning Science & Study Techniques
- Optimal Protocols for Studying & Learning
- How to Study Using Active Recall
- Learning with Failures, Movement & Balance
Practice Exam Videos
Reddit Communities
Main Subreddits
- r/CompTIA - CompTIA certifications
- r/CyberSecurity - Cybersecurity discussions
- r/AskNetsec - Network security Q&A
- r/ITCareerQuestions - Career advice
- r/InformationSecurity - InfoSec discussions
- r/netsec - Network security news
- r/ethicalhacking - Ethical hacking
- r/BlueTeamSec - Defensive security
- r/RedTeam - Offensive security
- r/netsecstudents - Students learning security
Certification-Specific Communities
- r/Casp - CASP+ certification
- r/CCNA - CCNA certification
- r/WGU - Western Governors University
- r/sysadmin - System administration
- r/linuxquestions - Linux help
- r/ReverseEngineering - Reverse engineering
- r/ITsecurity - IT security
Popular Reddit Posts
- Master List: Study Resources for A+, Network+, Security+
- How I Passed Sec+
- How I Passed CompTIA A+, N+, S+
- Passed Sec+, PenTest+, CySA+ in 2 Months 22 Days
- 34 Year Old, No IT Experience, Got Hired After A+ Cert
- Hiring Manager Advice to Newbies
- CompTIA Trifecta in 6 Months
- I Passed CASP+ Study Guide
Security Frameworks
NIST Framework Suite
- NIST Cybersecurity Framework
- NIST Privacy Framework
- NIST 800-53 Security Controls
- NIST 800-171
- NIST 800-37 Risk Management Framework
- NIST 800-39 Managing Information Security Risk
- NIST 800-61 Incident Handling Guide
- NIST 800-63 Digital Identity Guidelines
- NIST 800-207 Zero Trust Architecture
- NIST 800-218 Secure Software Development Framework
ISO/IEC Standards
- ISO/IEC 27001 - Information security management
- ISO/IEC 27002 - Security controls code of practice
- ISO/IEC 27032 - Cybersecurity guidelines
- ISO/IEC 27033 - Network security
- ISO/IEC 27034 - Application security
- ISO 22301 - Business continuity
Industry Frameworks
- MITRE ATT&CK Framework - Adversary tactics & techniques
- Lockheed Martin Cyber Kill Chain
- OWASP Top 10 - Web application risks
- CIS Controls - Critical security controls
- Cybersecurity Maturity Model Certification (CMMC)
- Cloud Security Alliance CCSK
Compliance & Regulatory
- PCI-DSS - Payment card security
- HIPAA Security Rule
- GDPR - European data protection
- FedRAMP - Federal cloud security
- SOC 2 - Service organization controls
- SOX IT Controls
Analysis & Modeling
- Diamond Model of Intrusion Analysis
- Unified Kill Chain
- MITRE Shield - Defense techniques
- MITRE Engage - Adversary engagement
- VERIS - Data breach framework
Industry Resources
Security News & Blogs
Training & Education Organizations
Professional Organizations
Development & Tools
- GitHub - Version control & collaboration
- Kali Linux - Penetration testing distro
- Ubuntu - Linux distribution
- Oracle VirtualBox - Virtual machines
- Red Hat - Enterprise Linux
Cloud Certifications
AWS Cloud
- AWS Certified Cloud Practitioner Exam Guide
- AWS Cloud Practitioner Essentials (Free)
- AWS Cloud Quest: Cloud Practitioner
- AWS Skill Builder - Free Learning Path
- Ultimate AWS Certified Cloud Practitioner CLF-C02 2025
- AWS Certified Cloud Practitioner YouTube Course
- AWS Certified Cloud Practitioner 15 Hour FreeCodeCamp
- AWS Security Specialty
Microsoft Azure
Google Cloud
Other Cloud Platforms
CISSP Resources
Official Materials
- CISSP Exam Outline
- ISC2 CISSP Certification Details
- ISC2 Official Training
- Official ISC2 CISSP Study Guide (9th Edition)
- CISSP Study Guide 2025-2026
- CISSP For Dummies (7th Edition)
Practice Tests & Prep
- CISSP Official Practice Tests (3rd Edition)
- Boson CISSP Practice Exams
- TotalTester CISSP Practice Exams
- CISSP Pocket Prep Mobile App
- CISSP Certification Complete Training 2025
- CISSP Practice Exams 2025
YouTube Courses
Study Resources
LinkedIn Professionals to Follow
Industry Leaders
- Mike Chapple - Security educator
- Brian Krebs - Security journalist
- Troy Hunt - Web security expert
- Heath Adams - Ethical hacking educator
- Jason Dion - CompTIA instructor
- Kevin Mitnick - Security consultant
- Chuck Brooks - Security thought leader
- Jane Frankland - Cybersecurity strategist
- Rinki Sethi - Security leader
- Tyler Cohen Wood - Threat intelligence
Organizations
Additional Learning Resources
Specialized Platforms
- Infosec Skills - Hands-on labs
- INE Security - Security specialization
- Offensive Security - Advanced training
- EC-Council CodeRed - Interactive learning
- ITPRO - IT Professional training
- Professor Messer Website - Free study materials
Cheat Sheets & References
- Digital Cloud Training AWS Cheat Sheets
- Tutorials Dojo AWS Exam Guide
- wyzguys Cybersecurity Blog (CASP focused)
Last Updated: November 2025
Tips for Success:
- Start with free resources to test your interest
- Combine video courses with hands-on labs
- Use practice exams to measure progress
- Join communities for support and networking
- Stay current with security news and trends