Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
Cybersecurity-Handbook — Open-source cybersecurity knowledge base with 400+ notes, labs, and cheat sheets covering offense, defense, cryptography, cloud, and forensics. | Kitploit
उपकरण/GitHubGitHub/priyanshu-rawa/cybersecurity-handbook
Web SecurityDigital ForensicsCryptographyPenetration TestingCloud SecurityLearning & EducationIncident ResponseCurated ResourcesLearning Paths & Courses
Labs & Practice
GitHubpriyanshu-rawa/cybersecurity-handbook

Cybersecurity-Handbook

Open-source cybersecurity knowledge base with 400+ notes, labs, and cheat sheets covering offense, defense, cryptography, cloud, and forensics.

रिपॉजिटरी देखेंवेबसाइट
371276 दिन पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
अनुरोधित भाषा में सामग्री उपलब्ध नहीं है। अंग्रेज़ी संस्करण दिखाया जा रहा है।
Typing SVG

📚 Cybersecurity Handbook

An open-source cybersecurity knowledge base for students, professionals, and self-learners — built as structured notes, hands-on labs, and real-world concepts you can search and navigate visually.

Built with Quartz • Powered by Markdown • Community Driven • MIT Licensed

Live Website Getting Started

Contributions

Stars Forks Contributors

Issues Last Commit License Quartz Markdown PRs Welcome Visitors

Linux Windows Docker Kubernetes Python Node.js Vercel

Learn cybersecurity with clarity — from fundamentals to advanced concepts, in one searchable, open-source handbook.
📝 Notes🧪 Labs🔍 Search⚡ Performance👥 Community
400+ and growingHands-on learningInstant, full-textPowered by QuartzOpen source
📑 Table of Contents
  • Preview
  • Why I built this
  • What you get
  • Quick start
  • What's covered
  • Contributing
  • Support this project
  • License

Preview

Homepage Interactive Graph

Homepage   ·   Interactive knowledge graph — every note links to related concepts

Reader Mode Dark Mode

Reader mode   ·   Dark mode (Catppuccin Mocha)

Mobile View

Fully responsive on mobile

Why I built this

I've spent a lot of nights doing exactly what you're probably doing right now — reading forums, watching tutorials, trying to piece together what actually matters in security.

Most of what I found fell into one of three buckets: too shallow (a list of tools with no explanation of why they work), too scattered (good content spread across a dozen blogs and paid courses), or priced like a $500 course was the only way in.

So I started writing my own notes — the kind that explain how things work, not just which commands to paste. Over time, those notes grew into this handbook.

I don't have all the answers, but I do think this stuff is learnable when it's explained clearly. If this saves you one late-night rabbit hole, it did its job.

⬆ back to top

What you get

  • 🔍 Instant search across 400+ notes
  • 🕸️ Interactive graph — see how topics connect
  • 🌗 Light & dark mode, including Catppuccin Mocha
  • 📱 Works on any device — phone, tablet, or laptop
  • 🎯 First-principles explanations, not just command lists
  • 🚫 No ads, no paywalls, no login required

Quick start

Get it running locally in under 2 minutes.

Prerequisites: Node.js v18+ and npm or yarn.

🐧 Linux / macOS
root@kitploit:~
git clone https://github.com/priyanshu-rawa/Cybersecurity-Handbook.git
cd Cybersecurity-Handbook
npm install
npm run quartz:dev
🪟 Windows (PowerShell)
root@kitploit:~
git clone https://github.com/priyanshu-rawa/Cybersecurity-Handbook.git
cd Cybersecurity-Handbook
npm install
npm run quartz:dev

Build for production:

root@kitploit:~
npm run quartz:build   # build the static site
npm run quartz:serve   # preview the build locally

What's covered

AreaTopics
🖥️ Operating systems & networkingLinux, Windows, TCP/IP, DNS, VPNs, firewalls
⚔️ Offensive securityOWASP Top 10, SQL injection, XSS, scanning, exploitation, post-exploitation
🛡️ Defensive securitySOC, incident response, SIEM, log analysis, threat hunting, digital forensics
☁️ Cloud & infrastructureAWS, Azure, GCP, Zero Trust, Docker, Kubernetes, DevSecOps, IAM
💻 Programming & automationPython, Bash, PowerShell, scripting, CI/CD, Git
🔐 CryptographySymmetric/asymmetric encryption, AES, RSA, hashing (SHA-256, MD5), PKI, TLS, certificates

A rough learning path, if you're starting from zero:

root@kitploit:~
graph LR
  A[Fundamentals & Networking] --> B[Offensive Security]
  A --> C[Defensive Security]
  B --> D[Cloud & Infrastructure]
  C --> D
  D --> E[Automation & Scripting]
  E --> F[Cryptography]

Contributing

Contributions of all sizes are welcome, from fixing a typo to adding a whole new topic. First time contributing to open source? Happy to walk you through it, just open an issue.

Ways to help:

  • 📝 Content — new topics, corrections, clearer explanations
  • 🎨 Design — diagrams, layout, visual polish
  • 💻 Code — bug fixes, Quartz config, new features
  • 📚 Docs — formatting, cross-references, clarity
  • 👥 Community — reporting issues, answering questions

Steps:

StepAction
1Fork the repo (button top right)
2Clone your fork: git clone https://github.com/your-username/Cybersecurity-Handbook.git
3Create a branch: git checkout -b feature/your-feature-name
4Make your changes
5Stage them: git add .
6Commit: git commit -m "Add: new section on ransomware defense"
7Push: git push origin feature/your-feature-name
8Open a Pull Request against main

Where things go:

TypeLocation
📝 Notescontent/ (relevant category folder)
🧪 Labscontent/ (relevant lab folder)
🖼️ Imagesassets/images/
📊 Diagramsassets/diagrams/
⬆ back to top

Support this project

This handbook is free and always will be. If it's helped you, here's what actually makes a difference:

⭐ Star the repoHelps other people find it
📢 Share itLinkedIn, X, Reddit, Discord — wherever your network is
🖊️ ContributeFix a typo, add a topic, sharpen an explanation
💬 Give feedbackOpen an issue or a discussion
🐛 Report bugsTells me what's broken or unclear

Want to share it? Feel free to copy this:

"Found this free Cybersecurity Handbook with 400+ notes, built with Obsidian + Quartz: https://github.com/priyanshu-rawa/Cybersecurity-Handbook"

If this handbook made a difference for you, a quick note is genuinely appreciated: [email protected]

Star History

Star History Chart

License

MIT License — see LICENSE for details. Use, modify, distribute, or commercialize freely, as long as the copyright notice stays intact. Contributions back are always welcome.

Cybersecurity Handbook — a knowledge base built through documentation, experimentation, and practical learning.

If this helped you, a star keeps me motivated to keep building. ⭐ Also check out CyberTimeline — 35 real cyberattacks across five decades, in an interactive timeline.

टूल डाउनलोड करें