mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-06-08 19:33:53 +02:00
3be4d34531
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)
11 lines
306 B
Java
11 lines
306 B
Java
package com.example.benchmark;
|
|
|
|
public class Main {
|
|
// EASY SECRET #10: Google OAuth secret in Java
|
|
private static final String GOOGLE_OAUTH_SECRET = "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";
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("Application starting...");
|
|
}
|
|
}
|