首页龙虾技能列表 › Digital Forensics Tools — 技能工具

Digital Forensics Tools — 技能工具

v1.0.0

Professional digital forensics tools assessment platform that generates personalized tool recommendations and skill development guidance.

0· 87·0 当前·0 累计
by @krishnakumarmahadevan-cmd (ToolWeb)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/29
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill is an instruction-only API description for a forensics assessment service and its declared requirements and instructions align with that purpose (no installs, no credentials, no unexpected actions).
评估建议
This skill appears internally consistent, but exercise normal caution: verify the skill's provenance (owner/source) before trusting assessments; avoid submitting sensitive or PII data to an undocumented API; test with non-sensitive sample data first; prefer skills with a public homepage or repository and clear authentication/privacy information. If you need this for production use, request the vendor's documentation, authentication details, and a privacy policy to confirm safe handling of any up...
详细分析 ▾
用途与能力
Name/description (digital forensics assessment) matches the provided artifacts: SKILL.md describes API endpoints and sample requests/responses. The skill does not request unrelated binaries, credentials, or system access.
指令范围
SKILL.md only documents endpoints, sample payloads, and expected responses; it does not instruct the agent to read local files, environment variables, or send data to unexpected endpoints. Note: the SKILL.md/openapi.json lack any authentication description and some response schemas are empty—this is a functional/provenance gap (not an explicit security action) and means the API description is incomplete.
安装机制
No install specification or code to write to disk (instruction-only). This minimizes install-time risk.
凭证需求
The skill declares no required environment variables, credentials, or config paths. That is proportionate for a read-only recommendation/assessment API description.
持久化与权限
always is false and the skill does not request persistent system privileges or modify other skills' configurations. Autonomous invocation is allowed by default but not combined with any broad access in this skill.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/29

Initial release of Digital Forensics Tools Assessment platform. - Launches a professional API for personalized digital forensics tool recommendations and skill development guidance. - Includes endpoints for health check, customized assessment generation, retrieving tool database, and skill development recommendations. - Supports role-based tool selection based on experience, focus areas, and certifications. - Provides structured pricing plans from Free to Enterprise. - Offers comprehensive JSON-based request and response formats for assessment and recommendations.

● 无害

安装命令 点击复制

官方npx clawhub@latest install toolweb-digital-forensics-tools
镜像加速npx clawhub@latest install toolweb-digital-forensics-tools --registry https://cn.clawhub-mirror.com

技能文档

The Digital Forensics Tools Assessment platform is a professional-grade API service designed to help security professionals, incident responders, and digital forensics practitioners identify the most suitable forensic tools for their specific needs and skill levels. Built by certified security professionals, this platform delivers personalized assessments based on individual experience, focus areas, and current competency levels.

This tool is ideal for organizations conducting forensic investigations, incident response teams building toolkits, security practitioners advancing their skills, and enterprises establishing standardized forensics capabilities. The assessment engine analyzes your profile against a comprehensive database of industry-standard forensics tools to recommend optimal selections aligned with your operational requirements.

The platform combines expert knowledge with data-driven recommendations to streamline tool selection, reduce implementation complexity, and ensure forensics teams have access to the most appropriate technologies for their investigations.

Usage

Sample Request:

{
  "sessionId": "sess_9f8c2b1e7a4d5e6f",
  "userId": 42,
  "timestamp": "2024-01-15T14:32:00Z",
  "assessmentData": {
    "sessionId": "sess_9f8c2b1e7a4d5e6f",
    "timestamp": "2024-01-15T14:32:00Z",
    "experience": {
      "years": 5,
      "domain": "incident_response"
    },
    "focus": {
      "primary": "memory_forensics",
      "secondary": "disk_imaging"
    },
    "skill_level": {
      "self_assessment": "intermediate",
      "certifications": ["CEH", "GCIH"]
    }
  }
}

Sample Response:

{
  "assessment_id": "assess_5f7c2a1b9e3d4k8m",
  "user_id": 42,
  "session_id": "sess_9f8c2b1e7a4d5e6f",
  "timestamp": "2024-01-15T14:32:15Z",
  "recommended_tools": [
    {
      "rank": 1,
      "tool_name": "Volatility Framework",
      "category": "memory_forensics",
      "match_score": 95,
      "reason": "Ideal for intermediate-level memory analysis with IR background",
      "deployment_complexity": "medium",
      "learning_curve": "moderate"
    },
    {
      "rank": 2,
      "tool_name": "FTK Imager",
      "category": "disk_imaging",
      "match_score": 88,
      "reason": "Industry-standard for disk acquisition and analysis",
      "deployment_complexity": "low",
      "learning_curve": "low"
    }
  ],
  "skill_gaps": [
    {
      "area": "advanced_memory_forensics",
      "current_level": "intermediate",
      "recommended_level": "advanced",
      "priority": "high"
    }
  ],
  "assessment_summary": "Your profile indicates strong incident response experience with memory forensics focus. Recommended tools align with intermediate-to-advanced capabilities."
}

Endpoints

GET /

Health Check Endpoint

Returns service health status.

Method: GET Path: /

Parameters: None

Response:

200 OK - Service is operational
Content-Type: application/json

POST /api/forensics/assessment

Generate Personalized Assessment

Generates a customized digital forensics tools assessment based on user profile, experience, and focus areas.

Method: POST Path: /api/forensics/assessment

Parameters:

NameTypeRequiredDescription
sessionIdstringYesUnique identifier for the assessment session
userIdinteger or nullNoIdentifier for the user undergoing assessment
timestampstringYesISO 8601 formatted timestamp of assessment submission
assessmentDataobjectYesCore assessment data containing experience, focus, and skill level information
assessmentData.sessionIdstringYesSession identifier matching parent sessionId
assessmentData.timestampstringYesAssessment data timestamp
assessmentData.experienceobjectNoProfessional experience details (years, domain, roles)
assessmentData.focusobjectNoPrimary and secondary forensics focus areas
assessmentData.skill_levelobjectNoSelf-assessed skill level and certifications
Response Shape:
{
  "assessment_id": "string",
  "user_id": "integer or null",
  "session_id": "string",
  "timestamp": "string",
  "recommended_tools": [
    {
      "rank": "integer",
      "tool_name": "string",
      "category": "string",
      "match_score": "number",
      "reason": "string",
      "deployment_complexity": "string",
      "learning_curve": "string"
    }
  ],
  "skill_gaps": [
    {
      "area": "string",
      "current_level": "string",
      "recommended_level": "string",
      "priority": "string"
    }
  ],
  "assessment_summary": "string"
}

GET /api/forensics/tools

Retrieve Available Forensics Tools

Returns comprehensive list of all available forensics tools in the platform database, including categorization and metadata.

Method: GET Path: /api/forensics/tools

Parameters: None

Response Shape:

{
  "total_tools": "integer",
  "tools": [
    {
      "tool_id": "string",
      "name": "string",
      "category": "string",
      "description": "string",
      "deployment_type": "string",
      "platform_support": ["string"],
      "license_type": "string",
      "maturity_level": "string"
    }
  ]
}

GET /api/forensics/skill-recommendations

Get Skill Development Recommendations

Returns personalized skill development recommendations based on forensics specialization and career progression paths.

Method: GET Path: /api/forensics/skill-recommendations

Parameters: None

Response Shape:

{
  "recommendations": [
    {
      "skill_area": "string",
      "current_proficiency": "string",
      "target_proficiency": "string",
      "learning_resources": [
        {
          "resource_type": "string",
          "title": "string",
          "duration": "string",
          "difficulty": "string"
        }
      ],
      "estimated_time_to_proficiency": "string",
      "career_impact": "string"
    }
  ]
}

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/compliance/digital-forensics
  • API Docs: https://api.mkkpro.com:8116/docs
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务