├── .claude ├── README.md ├── agents │ ├── coverage-analysis-generator-agent.md │ ├── crash-analysis-agent.md │ ├── crash-analyzer-agent.md │ ├── crash-analyzer-checker-agent.md │ ├── function-trace-generator-agent.md │ ├── oss-evidence-verifier-agent.md │ ├── oss-forensics-agent.md │ ├── oss-hypothesis-checker-agent.md │ ├── oss-hypothesis-former-agent.md │ ├── oss-investigator-gh-api-agent.md │ ├── oss-investigator-gh-archive-agent.md │ ├── oss-investigator-gh-recovery-agent.md │ ├── oss-investigator-ioc-extractor-agent.md │ ├── oss-investigator-local-git-agent.md │ └── oss-report-generator-agent.md ├── commands │ ├── agentic.md │ ├── analyze.md │ ├── codeql.md │ ├── crash-analysis.md │ ├── create-skill.md │ ├── exploit.md │ ├── fuzz.md │ ├── oss-forensics.md │ ├── patch.md │ ├── raptor-fuzz.md │ ├── raptor-scan.md │ ├── raptor-web.md │ ├── raptor.md │ ├── scan.md │ ├── test-workflows.md │ └── web.md └── skills │ ├── crash-analysis │ ├── function-tracing │ │ ├── SKILL.md │ │ ├── trace_instrument.c │ │ └── trace_to_perfetto.cpp │ ├── gcov-coverage │ │ └── SKILL.md │ ├── line-execution-checker │ │ ├── SKILL.md │ │ └── line_checker.cpp │ └── rr-debugger │ │ ├── SKILL.md │ │ └── scripts │ │ └── crash_trace.py │ └── oss-forensics │ ├── github-archive │ └── SKILL.md │ ├── github-commit-recovery │ └── SKILL.md │ ├── github-evidence-kit │ ├── SKILL.md │ ├── pytest.ini │ ├── requirements.txt │ ├── self_improvement_prompt.md │ ├── src │ │ ├── __init__.py │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── gharchive.py │ │ │ ├── git.py │ │ │ ├── github.py │ │ │ └── wayback.py │ │ ├── collectors │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── archive.py │ │ │ ├── local.py │ │ │ └── wayback.py │ │ ├── helpers.py │ │ ├── parsers.py │ │ ├── schema │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── events.py │ │ │ └── observations.py │ │ ├── store.py │ │ └── verifiers │ │ │ ├── __init__.py │ │ │ └── consistency.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── fixtures │ │ ├── gharchive_amazon_q_timeline_evidence.json │ │ ├── gharchive_july13_2025.json │ │ ├── github_api_commits.json │ │ └── github_api_pr7710.json │ │ ├── test_clients.py │ │ ├── test_collectors_local.py │ │ ├── test_helpers.py │ │ ├── test_integration.py │ │ ├── test_parsers.py │ │ └── test_store.py │ └── github-wayback-recovery │ └── SKILL.md ├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── requirements-all-optional.txt └── test_devcontainer.py ├── .gitignore ├── CLAUDE.md ├── CLAUDE_CODE_QUICKSTART.md ├── DEPENDENCIES.md ├── LICENSE ├── README.md ├── core ├── __init__.py ├── config.py ├── logging.py ├── progress.py └── sarif │ ├── __init__.py │ └── parser.py ├── docs ├── ARCHITECTURE.md ├── CLAUDE_CODE_USAGE.md ├── DATAFLOW_VALIDATION_SUMMARY.md ├── EXTENDING_LAUNCHER.md ├── FUZZING_QUICKSTART.md ├── PYTHON_CLI.md ├── README.md ├── VISUAL_DESIGN.md └── crash-analysis.md ├── engine ├── codeql │ └── suites │ │ └── README.md └── semgrep │ ├── rules │ ├── auth │ │ └── tls-skip-verify.yaml │ ├── crypto │ │ ├── insecure-iv-or-nonce.yaml │ │ ├── reused-nonce-heuristic.yaml │ │ ├── weak-asym-keysize.yaml │ │ ├── weak-block-modes.yaml │ │ ├── weak-hash.yaml │ │ ├── weak-kdf-iterations.yaml │ │ ├── weak-kdf-keysize.yaml │ │ └── weak-symmetric-cipher.yaml │ ├── deserialisation │ │ └── unsafe-java-deserialize.yaml │ ├── filesystem │ │ └── path-traversal.yaml │ ├── flows │ │ └── bad-mac-order.yaml │ ├── injection │ │ ├── command-taint.yaml │ │ └── sql-concat.yaml │ ├── logging │ │ └── logs-secrets.yaml │ ├── secrets │ │ └── hardcoded-api-key.yaml │ └── sinks │ │ └── ssrf.yaml │ ├── semgrep.yaml │ └── tools │ └── sarif_merge.py ├── hackers-8ball ├── packages ├── __init__.py ├── autonomous │ ├── __init__.py │ ├── corpus_generator.py │ ├── dialogue.py │ ├── exploit_validator.py │ ├── goal_planner.py │ ├── memory.py │ └── planner.py ├── binary_analysis │ ├── __init__.py │ ├── crash_analyser.py │ └── debugger.py ├── codeql │ ├── DATAFLOW_VISUALIZATION.md │ ├── PHASE2_OVERVIEW.md │ ├── README.md │ ├── __init__.py │ ├── agent.py │ ├── autonomous_analyzer.py │ ├── build_detector.py │ ├── database_manager.py │ ├── dataflow_validator.py │ ├── dataflow_visualizer.py │ ├── language_detector.py │ └── query_runner.py ├── fuzzing │ ├── __init__.py │ ├── afl_runner.py │ ├── corpus_manager.py │ └── crash_collector.py ├── llm_analysis │ ├── __init__.py │ ├── agent.py │ ├── crash_agent.py │ ├── llm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── config.py │ │ └── providers.py │ └── orchestrator.py ├── recon │ ├── __init__.py │ └── agent.py ├── sca │ ├── __init__.py │ └── agent.py ├── static-analysis │ ├── __init__.py │ ├── codeql │ │ └── env.py │ └── scanner.py └── web │ ├── __init__.py │ ├── client.py │ ├── crawler.py │ ├── fuzzer.py │ ├── requirements.txt │ └── scanner.py ├── raptor-offset ├── raptor.py ├── raptor_agentic.py ├── raptor_codeql.py ├── raptor_fuzzing.py ├── requirements-dev.txt ├── requirements.txt ├── test ├── comprehensive_test.sh ├── data │ ├── javascript_xss.js │ └── python_sql_injection.py ├── integration_tests.sh ├── integration_with_tools.sh ├── real_tests.sh ├── real_tests_fast.sh ├── test_workflows.sh └── truly_real_tests.sh └── tiers ├── README.md ├── analysis-guidance.md ├── personas ├── README.md ├── binary_exploitation_specialist.md ├── codeql_analyst.md ├── codeql_finding_analyst.md ├── crash_analyst.md ├── exploit_developer.md ├── fuzzing_strategist.md ├── patch_engineer.md ├── penetration_tester.md └── security_researcher.md ├── recovery.md └── specialists └── README.md /.claude/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/README.md -------------------------------------------------------------------------------- /.claude/agents/coverage-analysis-generator-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/coverage-analysis-generator-agent.md -------------------------------------------------------------------------------- /.claude/agents/crash-analysis-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analysis-agent.md -------------------------------------------------------------------------------- /.claude/agents/crash-analyzer-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analyzer-agent.md -------------------------------------------------------------------------------- /.claude/agents/crash-analyzer-checker-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/crash-analyzer-checker-agent.md -------------------------------------------------------------------------------- /.claude/agents/function-trace-generator-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/function-trace-generator-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-evidence-verifier-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-evidence-verifier-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-forensics-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-forensics-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-hypothesis-checker-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-hypothesis-checker-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-hypothesis-former-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-hypothesis-former-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-investigator-gh-api-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-gh-api-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-investigator-gh-archive-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-gh-archive-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-investigator-gh-recovery-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-gh-recovery-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-investigator-ioc-extractor-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-ioc-extractor-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-investigator-local-git-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-local-git-agent.md -------------------------------------------------------------------------------- /.claude/agents/oss-report-generator-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-report-generator-agent.md -------------------------------------------------------------------------------- /.claude/commands/agentic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/agentic.md -------------------------------------------------------------------------------- /.claude/commands/analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/analyze.md -------------------------------------------------------------------------------- /.claude/commands/codeql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/codeql.md -------------------------------------------------------------------------------- /.claude/commands/crash-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/crash-analysis.md -------------------------------------------------------------------------------- /.claude/commands/create-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/create-skill.md -------------------------------------------------------------------------------- /.claude/commands/exploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/exploit.md -------------------------------------------------------------------------------- /.claude/commands/fuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/fuzz.md -------------------------------------------------------------------------------- /.claude/commands/oss-forensics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/oss-forensics.md -------------------------------------------------------------------------------- /.claude/commands/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/patch.md -------------------------------------------------------------------------------- /.claude/commands/raptor-fuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/raptor-fuzz.md -------------------------------------------------------------------------------- /.claude/commands/raptor-scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/raptor-scan.md -------------------------------------------------------------------------------- /.claude/commands/raptor-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/raptor-web.md -------------------------------------------------------------------------------- /.claude/commands/raptor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/raptor.md -------------------------------------------------------------------------------- /.claude/commands/scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/scan.md -------------------------------------------------------------------------------- /.claude/commands/test-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/test-workflows.md -------------------------------------------------------------------------------- /.claude/commands/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/commands/web.md -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/function-tracing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/function-tracing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/function-tracing/trace_instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/function-tracing/trace_instrument.c -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/function-tracing/trace_to_perfetto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/function-tracing/trace_to_perfetto.cpp -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/gcov-coverage/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/gcov-coverage/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/line-execution-checker/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/line-execution-checker/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/line-execution-checker/line_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/line-execution-checker/line_checker.cpp -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/rr-debugger/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/rr-debugger/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/crash-analysis/rr-debugger/scripts/crash_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/crash-analysis/rr-debugger/scripts/crash_trace.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-archive/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-archive/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-commit-recovery/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-commit-recovery/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/pytest.ini -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/requirements.txt -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/self_improvement_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/self_improvement_prompt.md -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/__init__.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/clients/__init__.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/clients/gharchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/clients/gharchive.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/clients/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/clients/git.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/clients/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/clients/github.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/clients/wayback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/clients/wayback.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/collectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/collectors/__init__.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/collectors/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/collectors/api.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/collectors/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/collectors/archive.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/collectors/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/collectors/local.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/collectors/wayback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/collectors/wayback.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/helpers.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/parsers.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/schema/__init__.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/schema/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/schema/common.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/schema/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/schema/events.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/schema/observations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/schema/observations.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/store.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/verifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/verifiers/__init__.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/src/verifiers/consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/src/verifiers/consistency.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for github-forensics-schema 2 | -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/conftest.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/gharchive_amazon_q_timeline_evidence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/gharchive_amazon_q_timeline_evidence.json -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/gharchive_july13_2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/gharchive_july13_2025.json -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/github_api_commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/github_api_commits.json -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/github_api_pr7710.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/fixtures/github_api_pr7710.json -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_clients.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_collectors_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_collectors_local.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_helpers.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_integration.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_parsers.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-evidence-kit/tests/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-evidence-kit/tests/test_store.py -------------------------------------------------------------------------------- /.claude/skills/oss-forensics/github-wayback-recovery/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/skills/oss-forensics/github-wayback-recovery/SKILL.md -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/requirements-all-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.devcontainer/requirements-all-optional.txt -------------------------------------------------------------------------------- /.devcontainer/test_devcontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.devcontainer/test_devcontainer.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CLAUDE_CODE_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/CLAUDE_CODE_QUICKSTART.md -------------------------------------------------------------------------------- /DEPENDENCIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/DEPENDENCIES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/core/config.py -------------------------------------------------------------------------------- /core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/core/logging.py -------------------------------------------------------------------------------- /core/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/core/progress.py -------------------------------------------------------------------------------- /core/sarif/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/sarif/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/core/sarif/parser.py -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/CLAUDE_CODE_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/CLAUDE_CODE_USAGE.md -------------------------------------------------------------------------------- /docs/DATAFLOW_VALIDATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/DATAFLOW_VALIDATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/EXTENDING_LAUNCHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/EXTENDING_LAUNCHER.md -------------------------------------------------------------------------------- /docs/FUZZING_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/FUZZING_QUICKSTART.md -------------------------------------------------------------------------------- /docs/PYTHON_CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/PYTHON_CLI.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/VISUAL_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/VISUAL_DESIGN.md -------------------------------------------------------------------------------- /docs/crash-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/docs/crash-analysis.md -------------------------------------------------------------------------------- /engine/codeql/suites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/codeql/suites/README.md -------------------------------------------------------------------------------- /engine/semgrep/rules/auth/tls-skip-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/auth/tls-skip-verify.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/insecure-iv-or-nonce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/insecure-iv-or-nonce.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/reused-nonce-heuristic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/reused-nonce-heuristic.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-asym-keysize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-asym-keysize.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-block-modes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-block-modes.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-hash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-hash.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-kdf-iterations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-kdf-iterations.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-kdf-keysize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-kdf-keysize.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/crypto/weak-symmetric-cipher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/crypto/weak-symmetric-cipher.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/deserialisation/unsafe-java-deserialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/deserialisation/unsafe-java-deserialize.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/filesystem/path-traversal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/filesystem/path-traversal.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/flows/bad-mac-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/flows/bad-mac-order.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/injection/command-taint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/injection/command-taint.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/injection/sql-concat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/injection/sql-concat.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/logging/logs-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/logging/logs-secrets.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/secrets/hardcoded-api-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/secrets/hardcoded-api-key.yaml -------------------------------------------------------------------------------- /engine/semgrep/rules/sinks/ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/rules/sinks/ssrf.yaml -------------------------------------------------------------------------------- /engine/semgrep/semgrep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/semgrep.yaml -------------------------------------------------------------------------------- /engine/semgrep/tools/sarif_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/engine/semgrep/tools/sarif_merge.py -------------------------------------------------------------------------------- /hackers-8ball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/hackers-8ball -------------------------------------------------------------------------------- /packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/autonomous/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/__init__.py -------------------------------------------------------------------------------- /packages/autonomous/corpus_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/corpus_generator.py -------------------------------------------------------------------------------- /packages/autonomous/dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/dialogue.py -------------------------------------------------------------------------------- /packages/autonomous/exploit_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/exploit_validator.py -------------------------------------------------------------------------------- /packages/autonomous/goal_planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/goal_planner.py -------------------------------------------------------------------------------- /packages/autonomous/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/memory.py -------------------------------------------------------------------------------- /packages/autonomous/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/autonomous/planner.py -------------------------------------------------------------------------------- /packages/binary_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/binary_analysis/__init__.py -------------------------------------------------------------------------------- /packages/binary_analysis/crash_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/binary_analysis/crash_analyser.py -------------------------------------------------------------------------------- /packages/binary_analysis/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/binary_analysis/debugger.py -------------------------------------------------------------------------------- /packages/codeql/DATAFLOW_VISUALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/DATAFLOW_VISUALIZATION.md -------------------------------------------------------------------------------- /packages/codeql/PHASE2_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/PHASE2_OVERVIEW.md -------------------------------------------------------------------------------- /packages/codeql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/README.md -------------------------------------------------------------------------------- /packages/codeql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/__init__.py -------------------------------------------------------------------------------- /packages/codeql/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/agent.py -------------------------------------------------------------------------------- /packages/codeql/autonomous_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/autonomous_analyzer.py -------------------------------------------------------------------------------- /packages/codeql/build_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/build_detector.py -------------------------------------------------------------------------------- /packages/codeql/database_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/database_manager.py -------------------------------------------------------------------------------- /packages/codeql/dataflow_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/dataflow_validator.py -------------------------------------------------------------------------------- /packages/codeql/dataflow_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/dataflow_visualizer.py -------------------------------------------------------------------------------- /packages/codeql/language_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/language_detector.py -------------------------------------------------------------------------------- /packages/codeql/query_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/codeql/query_runner.py -------------------------------------------------------------------------------- /packages/fuzzing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/fuzzing/__init__.py -------------------------------------------------------------------------------- /packages/fuzzing/afl_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/fuzzing/afl_runner.py -------------------------------------------------------------------------------- /packages/fuzzing/corpus_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/fuzzing/corpus_manager.py -------------------------------------------------------------------------------- /packages/fuzzing/crash_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/fuzzing/crash_collector.py -------------------------------------------------------------------------------- /packages/llm_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/__init__.py -------------------------------------------------------------------------------- /packages/llm_analysis/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/agent.py -------------------------------------------------------------------------------- /packages/llm_analysis/crash_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/crash_agent.py -------------------------------------------------------------------------------- /packages/llm_analysis/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/llm/__init__.py -------------------------------------------------------------------------------- /packages/llm_analysis/llm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/llm/client.py -------------------------------------------------------------------------------- /packages/llm_analysis/llm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/llm/config.py -------------------------------------------------------------------------------- /packages/llm_analysis/llm/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/llm/providers.py -------------------------------------------------------------------------------- /packages/llm_analysis/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/llm_analysis/orchestrator.py -------------------------------------------------------------------------------- /packages/recon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/recon/__init__.py -------------------------------------------------------------------------------- /packages/recon/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/recon/agent.py -------------------------------------------------------------------------------- /packages/sca/__init__.py: -------------------------------------------------------------------------------- 1 | """RAPTOR SCA Package - Software Composition Analysis.""" 2 | -------------------------------------------------------------------------------- /packages/sca/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/sca/agent.py -------------------------------------------------------------------------------- /packages/static-analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/static-analysis/__init__.py -------------------------------------------------------------------------------- /packages/static-analysis/codeql/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/static-analysis/codeql/env.py -------------------------------------------------------------------------------- /packages/static-analysis/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/static-analysis/scanner.py -------------------------------------------------------------------------------- /packages/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/__init__.py -------------------------------------------------------------------------------- /packages/web/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/client.py -------------------------------------------------------------------------------- /packages/web/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/crawler.py -------------------------------------------------------------------------------- /packages/web/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/fuzzer.py -------------------------------------------------------------------------------- /packages/web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/requirements.txt -------------------------------------------------------------------------------- /packages/web/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/packages/web/scanner.py -------------------------------------------------------------------------------- /raptor-offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/raptor-offset -------------------------------------------------------------------------------- /raptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/raptor.py -------------------------------------------------------------------------------- /raptor_agentic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/raptor_agentic.py -------------------------------------------------------------------------------- /raptor_codeql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/raptor_codeql.py -------------------------------------------------------------------------------- /raptor_fuzzing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/raptor_fuzzing.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/comprehensive_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/comprehensive_test.sh -------------------------------------------------------------------------------- /test/data/javascript_xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/data/javascript_xss.js -------------------------------------------------------------------------------- /test/data/python_sql_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/data/python_sql_injection.py -------------------------------------------------------------------------------- /test/integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/integration_tests.sh -------------------------------------------------------------------------------- /test/integration_with_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/integration_with_tools.sh -------------------------------------------------------------------------------- /test/real_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/real_tests.sh -------------------------------------------------------------------------------- /test/real_tests_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/real_tests_fast.sh -------------------------------------------------------------------------------- /test/test_workflows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/test_workflows.sh -------------------------------------------------------------------------------- /test/truly_real_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/test/truly_real_tests.sh -------------------------------------------------------------------------------- /tiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/README.md -------------------------------------------------------------------------------- /tiers/analysis-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/analysis-guidance.md -------------------------------------------------------------------------------- /tiers/personas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/README.md -------------------------------------------------------------------------------- /tiers/personas/binary_exploitation_specialist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/binary_exploitation_specialist.md -------------------------------------------------------------------------------- /tiers/personas/codeql_analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/codeql_analyst.md -------------------------------------------------------------------------------- /tiers/personas/codeql_finding_analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/codeql_finding_analyst.md -------------------------------------------------------------------------------- /tiers/personas/crash_analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/crash_analyst.md -------------------------------------------------------------------------------- /tiers/personas/exploit_developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/exploit_developer.md -------------------------------------------------------------------------------- /tiers/personas/fuzzing_strategist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/fuzzing_strategist.md -------------------------------------------------------------------------------- /tiers/personas/patch_engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/patch_engineer.md -------------------------------------------------------------------------------- /tiers/personas/penetration_tester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/penetration_tester.md -------------------------------------------------------------------------------- /tiers/personas/security_researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/personas/security_researcher.md -------------------------------------------------------------------------------- /tiers/recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/recovery.md -------------------------------------------------------------------------------- /tiers/specialists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadievron/raptor/HEAD/tiers/specialists/README.md --------------------------------------------------------------------------------