README.md
pyproject.toml
aegis_ai_core.egg-info/PKG-INFO
aegis_ai_core.egg-info/SOURCES.txt
aegis_ai_core.egg-info/dependency_links.txt
aegis_ai_core.egg-info/entry_points.txt
aegis_ai_core.egg-info/requires.txt
aegis_ai_core.egg-info/top_level.txt
src/__init__.py
src/worker_daemon.py
src/ai/__init__.py
src/ai/builtin_providers.py
src/ai/llm_gateway.py
src/ai/provider_config.py
src/ai/smoke.py
src/analysis/__init__.py
src/analysis/dependency_tracker.py
src/analysis/incremental_analyzer.py
src/analysis/languages.py
src/analysis/multi_language_ast.py
src/analysis/rule_engine.py
src/analysis/tree_sitter_runtime.py
src/analysis/analyzers/__init__.py
src/analysis/analyzers/c_cpp_analyzer.py
src/analysis/analyzers/go_analyzer.py
src/analysis/analyzers/java_analyzer.py
src/analysis/analyzers/javascript_analyzer.py
src/analysis/analyzers/php_analyzer.py
src/analysis/analyzers/python_analyzer.py
src/analysis/analyzers/runtime.py
src/analysis/base/__init__.py
src/analysis/base/analysis_context.py
src/analysis/base/dataflow_tracker.py
src/analysis/base/file_context.py
src/analysis/base/js_dataflow_collector.py
src/analysis/base/security_rule.py
src/analysis/base/user_input_detector.py
src/analysis/cfg/__init__.py
src/analysis/cfg/dominator_tree.py
src/analysis/dsl/__init__.py
src/analysis/dsl/dsl_adapter.py
src/analysis/dsl/dsl_engine.py
src/analysis/dsl/rule_schema.py
src/analysis/rules/__init__.py
src/analysis/rules/deserialization/__init__.py
src/analysis/rules/deserialization/ast_rule.py
src/analysis/rules/deserialization/go_ast_rule.py
src/analysis/rules/deserialization/java_ast_rule.py
src/analysis/rules/deserialization/javascript_ast_rule.py
src/analysis/rules/deserialization/php_ast_rule.py
src/analysis/rules/hardcoded_credentials/__init__.py
src/analysis/rules/hardcoded_credentials/ast_rule.py
src/analysis/rules/hardcoded_credentials/go_ast_rule.py
src/analysis/rules/hardcoded_credentials/java_ast_rule.py
src/analysis/rules/hardcoded_credentials/javascript_ast_rule.py
src/analysis/rules/hardcoded_credentials/php_ast_rule.py
src/analysis/rules/nosql_injection/__init__.py
src/analysis/rules/nosql_injection/go_ast_rule.py
src/analysis/rules/nosql_injection/java_ast_rule.py
src/analysis/rules/nosql_injection/javascript_ast_rule.py
src/analysis/rules/nosql_injection/php_ast_rule.py
src/analysis/rules/nosql_injection/python_ast_rule.py
src/analysis/rules/open_redirect/__init__.py
src/analysis/rules/open_redirect/go_ast_rule.py
src/analysis/rules/open_redirect/java_ast_rule.py
src/analysis/rules/open_redirect/javascript_ast_rule.py
src/analysis/rules/open_redirect/php_ast_rule.py
src/analysis/rules/open_redirect/python_ast_rule.py
src/analysis/rules/path_traversal/__init__.py
src/analysis/rules/path_traversal/ast_rule.py
src/analysis/rules/path_traversal/go_ast_rule.py
src/analysis/rules/path_traversal/java_ast_rule.py
src/analysis/rules/path_traversal/javascript_ast_rule.py
src/analysis/rules/path_traversal/php_ast_rule.py
src/analysis/rules/rce/__init__.py
src/analysis/rules/rce/ast_rule.py
src/analysis/rules/rce/go_ast_rule.py
src/analysis/rules/rce/java_ast_rule.py
src/analysis/rules/rce/javascript_ast_rule.py
src/analysis/rules/rce/php_ast_rule.py
src/analysis/rules/sql_injection/__init__.py
src/analysis/rules/sql_injection/ast_rule.py
src/analysis/rules/sql_injection/go_ast_rule.py
src/analysis/rules/sql_injection/java_ast_rule.py
src/analysis/rules/sql_injection/javascript_ast_rule.py
src/analysis/rules/sql_injection/php_ast_rule.py
src/analysis/rules/ssrf/__init__.py
src/analysis/rules/ssrf/go_ast_rule.py
src/analysis/rules/ssrf/java_ast_rule.py
src/analysis/rules/ssrf/javascript_ast_rule.py
src/analysis/rules/ssrf/php_ast_rule.py
src/analysis/rules/ssrf/python_ast_rule.py
src/analysis/rules/xss/__init__.py
src/analysis/rules/xss/ast_rule.py
src/analysis/rules/xss/go_ast_rule.py
src/analysis/rules/xss/java_ast_rule.py
src/analysis/rules/xss/javascript_ast_rule.py
src/analysis/rules/xss/php_ast_rule.py
src/analysis/taint/__init__.py
src/analysis/taint/cross_file_analyzer.py
src/analysis/taint/source_sink_registry.py
src/analysis/taint/taint_analyzer.py
src/analysis/taint/taint_graph.py
src/core/__init__.py
src/core/config.py
src/core/file_metadata.py
src/core/logging_config.py
src/core/models.py
src/lsp/__init__.py
src/lsp/__main__.py
src/lsp/server.py
src/scanner/__init__.py
src/scanner/ai_analyzer.py
src/scanner/baseline.py
src/scanner/benchmark.py
src/scanner/benchmark_cases.py
src/scanner/cli.py
src/scanner/false_positive_manager.py
src/scanner/incremental_scanner.py
src/scanner/local_fix.py
src/scanner/performance_optimizer.py
src/scanner/project_scanner.py
src/scanner/rag_enhancer.py
src/scanner/report_generator.py
src/scanner/rules_cli.py
src/scanner/smart_remediation.py
src/scanner/taint_enhancer.py
tests/test_acceptance_benchmark.py
tests/test_ai_analyzer_architecture.py
tests/test_ai_provider.py
tests/test_analysis_dispatch.py
tests/test_analyzer_degradation_logging.py
tests/test_analyzer_parse_reuse.py
tests/test_baseline.py
tests/test_benchmark_engine_dispatch.py
tests/test_c_cpp_analysis.py
tests/test_cli_helpers.py
tests/test_community_readiness.py
tests/test_config_resilience.py
tests/test_core_features.py
tests/test_core_models.py
tests/test_cross_file_analysis.py
tests/test_cross_file_taint_propagation.py
tests/test_custom_rules.py
tests/test_dependency_tracker.py
tests/test_deprecated_interfaces.py
tests/test_distribution_contents.py
tests/test_dominator_tree.py
tests/test_dsl_sql_rules.py
tests/test_dsl_vs_ast.py
tests/test_dsl_xss_rules.py
tests/test_evaluate_project.py
tests/test_exception_boundaries.py
tests/test_file_metadata.py
tests/test_incremental_analyzer.py
tests/test_incremental_scanner.py
tests/test_inline_suppressor.py
tests/test_llm_gateway.py
tests/test_llm_gateway_smoke.py
tests/test_lsp_cli_consistency.py
tests/test_lsp_e2e.py
tests/test_lsp_integration.py
tests/test_lsp_server.py
tests/test_multi_language.py
tests/test_multi_language_ast_regressions.py
tests/test_nosql_dataflow.py
tests/test_nosql_nodegoat.py
tests/test_nosql_rule.py
tests/test_performance_benchmark.py
tests/test_performance_optimizer.py
tests/test_performance_regression_gates.py
tests/test_phase2_taint.py
tests/test_php_ast_only_rce_xss.py
tests/test_php_sqli_benchmark.py
tests/test_php_taint.py
tests/test_project_scanner.py
tests/test_pytest_configuration.py
tests/test_query.py
tests/test_rag_enhancer.py
tests/test_release_consistency.py
tests/test_release_tag.py
tests/test_report_cli_e2e.py
tests/test_report_xss.py
tests/test_rules_cli.py
tests/test_rules_positive_negative.py
tests/test_smart_remediation.py
tests/test_ssrf_multi_language.py
tests/test_taint_analysis.py
tests/test_taint_enhancer.py
tests/test_taint_regressions.py
tests/test_tree_sitter_runtime.py
tests/test_typecheck_gate.py
tests/test_user_input_detector.py
tests/test_vuln_express_rule.py
tests/test_vulnerable_code.py
tests/test_worker_daemon.py