mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-07-07 12:58:02 +02:00
feat(modules): add harness-tester module for Rust fuzzing pipeline
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
FROM localhost/fuzzforge-modules-sdk:0.1.0
|
||||
|
||||
# Module metadata is now read from pyproject.toml [tool.fuzzforge.module] section
|
||||
|
||||
# Install system dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
curl \
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "rust-analyzer"
|
||||
version = "0.0.1"
|
||||
description = "FIXME"
|
||||
name = "fuzzforge-rust-analyzer"
|
||||
version = "0.1.0"
|
||||
description = "Analyzes Rust projects to identify functions suitable for fuzzing"
|
||||
authors = []
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14"
|
||||
@@ -26,3 +26,30 @@ module = "module.__main__:main"
|
||||
|
||||
[tool.uv]
|
||||
package = true
|
||||
|
||||
# FuzzForge module metadata for AI agent discovery
|
||||
[tool.fuzzforge.module]
|
||||
identifier = "fuzzforge-rust-analyzer"
|
||||
category = "analyzer"
|
||||
language = "rust"
|
||||
pipeline_stage = "analysis"
|
||||
pipeline_order = 1
|
||||
dependencies = []
|
||||
continuous_mode = false
|
||||
typical_duration = "30s"
|
||||
|
||||
use_cases = [
|
||||
"Analyze Rust crate to find fuzzable functions",
|
||||
"First step in Rust fuzzing pipeline before harness generation",
|
||||
"Produces fuzzable_functions.json for AI harness generation"
|
||||
]
|
||||
|
||||
input_requirements = [
|
||||
"rust-source-code",
|
||||
"Cargo.toml"
|
||||
]
|
||||
|
||||
output_artifacts = [
|
||||
"fuzzable_functions.json",
|
||||
"analysis_report.md"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user