mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-05-20 10:14:41 +02:00
fde6c86278
Add comprehensive benchmark dataset with 32 documented secrets for testing secret detection workflows (gitleaks, trufflehog, llm_secret_detection). - Add test_projects/secret_detection_benchmark/ with 19 test files - Add ground truth JSON with precise line-by-line secret mappings - Update .gitignore with exceptions for benchmark files (not real secrets) Dataset breakdown: - 12 Easy secrets (standard patterns) - 10 Medium secrets (obfuscated) - 10 Hard secrets (well hidden)
16 lines
414 B
SQL
16 lines
414 B
SQL
-- Database initialization script
|
|
|
|
CREATE DATABASE prod_db;
|
|
|
|
-- MEDIUM SECRET #18: Secret in SQL comment
|
|
-- Connection string: postgresql://admin:Pr0dDB_S3cr3t_P@ss@db.prod.example.com:5432/prod_db
|
|
|
|
CREATE TABLE users (
|
|
id SERIAL PRIMARY KEY,
|
|
username VARCHAR(255) NOT NULL,
|
|
email VARCHAR(255) NOT NULL
|
|
);
|
|
|
|
-- Insert test data
|
|
INSERT INTO users (username, email) VALUES ('admin', 'admin@example.com');
|