Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-cybersec-roadmap-v2toolweb 网络安全路线图 v2

Agent Skill

toolweb-cybersec-roadmap-v2 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,778

周安装

159

GitHub Stars

公开资料未说明

下载量

1,323
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:toolweb-cybersec-roadmap-v2(toolweb 网络安全路线图 v2)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-cybersec-roadmap-v2
安装命令:
openclaw skills install toolweb-cybersec-roadmap-v2
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install toolweb-cybersec-roadmap-v2

简介

根据经验水平和学习目标生成个性化网络安全路径。

  • 适合技能提升、职业转型或知识体系构建场景。
  • 提供分阶段学习计划和资源推荐服务。toolweb-cybersec-roadmap-v2 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需输入当前技能评估和学习偏好以定制方案。
  • 建议定期更新评估数据以保持路径有效性。

SKILL.md

name
Cyber Security Roadmap
description
Generates personalized cybersecurity learning paths based on experience level, goals, and learning preferences.

Overview

The Cyber Security Roadmap API is a comprehensive learning path generator designed to help security professionals and aspiring cybersecurity practitioners build structured, personalized career development plans. By assessing your current experience level, technical knowledge, security background, career goals, and learning preferences, the API generates tailored roadmaps that guide you through the skills and certifications needed to advance in cybersecurity.

This tool is ideal for career changers entering security, professionals seeking specialization in specific domains (threat analysis, compliance, incident response, etc.), and organizations building security training programs for their teams. The API combines industry-standard frameworks with adaptive learning pathways to create realistic, achievable progression plans.

Whether you're starting from zero experience or looking to deepen expertise in a specific cybersecurity domain, the Cyber Security Roadmap API provides the structured guidance needed to achieve your professional goals efficiently.

Usage

Sample Request

{
  "assessmentData": {
    "experience_level": "intermediate",
    "knowledge": [
      "networking",
      "linux",
      "python"
    ],
    "security_experience": [
      "network monitoring",
      "vulnerability scanning"
    ],
    "goals": [
      "penetration testing",
      "incident response"
    ],
    "time_commitment": "10-15 hours/week",
    "learning_preferences": [
      "hands-on labs",
      "video courses",
      "certifications"
    ],
    "sessionId": "sess-12345-abcde",
    "timestamp": "2025-01-15T10:30:00Z"
  },
  "sessionId": "sess-12345-abcde",
  "userId": 42,
  "timestamp": "2025-01-15T10:30:00Z"
}

Sample Response

{
  "roadmap_id": "rm-789xyz",
  "user_id": 42,
  "experience_level": "intermediate",
  "specialization": "penetration testing",
  "milestones": [
    {
      "phase": 1,
      "title": "Foundation Strengthening",
      "duration_weeks": 4,
      "topics": [
        "advanced networking concepts",
        "web application architecture",
        "security testing fundamentals"
      ],
      "certifications": [
        "CompTIA Security+"
      ],
      "estimated_hours": 40
    },
    {
      "phase": 2,
      "title": "Penetration Testing Essentials",
      "duration_weeks": 8,
      "topics": [
        "reconnaissance techniques",
        "scanning and enumeration",
        "exploitation methods",
        "post-exploitation"
      ],
      "certifications": [
        "CEH (Certified Ethical Hacker)"
      ],
      "estimated_hours": 80,
      "labs": [
        "HackTheBox",
        "TryHackMe"
      ]
    },
    {
      "phase": 3,
      "title": "Advanced Specialization",
      "duration_weeks": 12,
      "topics": [
        "advanced exploitation",
        "web application pentesting",
        "reporting and remediation"
      ],
      "certifications": [
        "OSCP (Offensive Security Certified Professional)"
      ],
      "estimated_hours": 200,
      "labs": [
        "OSCP Lab Environment"
      ]
    }
  ],
  "recommended_resources": [
    {
      "title": "Penetration Testing with Kali Linux",
      "type": "course",
      "platform": "Udemy",
      "estimated_duration": "40 hours"
    },
    {
      "title": "Web Security Academy",
      "type": "labs",
      "platform": "PortSwigger",
      "estimated_duration": "60 hours"
    }
  ],
  "total_estimated_duration_weeks": 24,
  "created_at": "2025-01-15T10:30:00Z"
}

Endpoints

GET /

Health Check

Verifies that the API is operational and accessible.

ParameterTypeRequiredDescription
No parameters required

Response: Returns HTTP 200 with service status.


POST /api/cybersecurity/roadmap

Generate Personalized Roadmap

Generates a comprehensive, personalized cybersecurity learning roadmap based on the provided assessment data.

Request Body:

ParameterTypeRequiredDescription
assessmentDataAssessmentData objectYesLearner assessment details including experience level, knowledge, goals, and preferences
sessionIdstringYesUnique session identifier for tracking this request
userIdinteger or nullNoOptional user identifier for authenticated requests
timestampstringYesISO 8601 timestamp of the request

AssessmentData object:

FieldTypeRequiredDescription
experience_levelstringYesCurrent skill level: "beginner", "intermediate", "advanced", or "expert"
knowledgearray of stringsNoList of technical areas already understood (e.g., "networking", "linux", "python")
security_experiencearray of stringsNoList of security-related experience (e.g., "network monitoring", "incident response")
goalsarray of stringsNoCareer goals and specializations sought (e.g., "penetration testing", "compliance", "threat analysis")
time_commitmentstringYesAvailable weekly learning time (e.g., "5-10 hours/week", "15+ hours/week")
learning_preferencesarray of stringsNoPreferred learning modalities (e.g., "hands-on labs", "video courses", "certifications", "books")
sessionIdstringYesSession identifier matching request-level sessionId
timestampstringYesISO 8601 timestamp

Response (HTTP 200):

Returns a personalized roadmap object containing:

  • Phased milestones with duration and topic recommendations
  • Relevant certifications for each phase
  • Recommended learning resources (courses, labs, books)
  • Estimated total completion time
  • Specialization path based on goals

Error Response (HTTP 422):

Returns validation errors if required fields are missing or malformed.


GET /api/cybersecurity/specializations

Retrieve Available Specializations

Lists all available cybersecurity specialization paths offered by the roadmap engine.

ParameterTypeRequiredDescription
No parameters required

Response (HTTP 200):

Returns an array of specialization objects, each containing:

  • Specialization name and description
  • Required foundational knowledge
  • Typical duration
  • Associated certifications
  • Career roles aligned with this path

Example specializations: Penetration Testing, Security Architecture, Incident Response, Cloud Security, Compliance & Governance, Threat Intelligence, Application Security.


GET /api/cybersecurity/learning-paths

Retrieve All Learning Paths

Fetches the complete catalog of available learning paths, including difficulty levels and prerequisites.

ParameterTypeRequiredDescription
No parameters required

Response (HTTP 200):

Returns an array of learning path objects, each containing:

  • Path identifier and title
  • Description and learning outcomes
  • Difficulty level (beginner, intermediate, advanced)
  • Prerequisites
  • Recommended duration
  • Associated learning modules and resources
  • Certification mappings

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.


References

  • Kong Route: https://api.mkkpro.com/career/cybersec-roadmap-v2
  • API Docs: https://api.mkkpro.com:8109/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.9%
按下载量换算1,057

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills