LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements-ai.txt
requirements-dev.txt
requirements.txt
setup.py
llm_scan/__init__.py
llm_scan/config.py
llm_scan/models.py
llm_scan/runner.py
llm_scan/engine/__init__.py
llm_scan/engine/ai_engine.py
llm_scan/engine/ai_providers.py
llm_scan/engine/eval_prompt_generator.py
llm_scan/engine/langchain_extractor.py
llm_scan/engine/langgraph_extractor.py
llm_scan/engine/llamaindex_extractor.py
llm_scan/engine/mcp_extractor.py
llm_scan/engine/semgrep_engine.py
llm_scan/enrich/__init__.py
llm_scan/enrich/rest_uploader.py
llm_scan/enrich/uploader.py
llm_scan/eval/__init__.py
llm_scan/eval/__main__.py
llm_scan/eval/runner.py
llm_scan/output/__init__.py
llm_scan/output/console.py
llm_scan/output/json.py
llm_scan/output/sarif.py
llm_scan/rules/python/README.md
llm_scan/rules/python/test-simple.yaml
llm_scan/rules/python/anthropic/generic/code-injection.yaml
llm_scan/rules/python/anthropic/generic/command-injection.yaml
llm_scan/rules/python/anthropic/generic/data-exfiltration.yaml
llm_scan/rules/python/anthropic/generic/excessive-agency.yaml
llm_scan/rules/python/anthropic/generic/jailbreak.yaml
llm_scan/rules/python/anthropic/generic/model-dos.yaml
llm_scan/rules/python/anthropic/generic/overreliance.yaml
llm_scan/rules/python/anthropic/generic/prompt-injection.yaml
llm_scan/rules/python/anthropic/generic/sql-injection.yaml
llm_scan/rules/python/anthropic/generic/supply-chain.yaml
llm_scan/rules/python/aws/generic/code-injection.yaml
llm_scan/rules/python/aws/generic/command-injection.yaml
llm_scan/rules/python/aws/generic/prompt-injection.yaml
llm_scan/rules/python/aws/generic/sql-injection.yaml
llm_scan/rules/python/azure/generic/code-injection.yaml
llm_scan/rules/python/azure/generic/command-injection.yaml
llm_scan/rules/python/azure/generic/prompt-injection.yaml
llm_scan/rules/python/azure/generic/sql-injection.yaml
llm_scan/rules/python/cohere/generic/code-injection.yaml
llm_scan/rules/python/cohere/generic/command-injection.yaml
llm_scan/rules/python/cohere/generic/prompt-injection.yaml
llm_scan/rules/python/cohere/generic/sql-injection.yaml
llm_scan/rules/python/huggingface/generic/code-injection.yaml
llm_scan/rules/python/huggingface/generic/command-injection.yaml
llm_scan/rules/python/huggingface/generic/model-dos.yaml
llm_scan/rules/python/huggingface/generic/overreliance.yaml
llm_scan/rules/python/huggingface/generic/path-traversal.yaml
llm_scan/rules/python/huggingface/generic/prompt-injection.yaml
llm_scan/rules/python/huggingface/generic/sensitive-info-disclosure.yaml
llm_scan/rules/python/huggingface/generic/sql-injection.yaml
llm_scan/rules/python/huggingface/generic/supply-chain.yaml
llm_scan/rules/python/huggingface/generic/training-data-poisoning.yaml
llm_scan/rules/python/langchain/generic/agent-excessive-agency.yaml
llm_scan/rules/python/langchain/generic/callback-handler-risks.yaml
llm_scan/rules/python/langchain/generic/code-injection.yaml
llm_scan/rules/python/langchain/generic/document-loader-risks.yaml
llm_scan/rules/python/langchain/generic/memory-injection.yaml
llm_scan/rules/python/langchain/generic/output-parser-risks.yaml
llm_scan/rules/python/langchain/generic/prompt-injection.yaml
llm_scan/rules/python/langchain/generic/rag-vulnerabilities.yaml
llm_scan/rules/python/langchain/generic/vector-store-injection.yaml
llm_scan/rules/python/llama_index/generic/code-injection.yaml
llm_scan/rules/python/llama_index/generic/document-loader-risks.yaml
llm_scan/rules/python/llama_index/generic/insecure-output-handling.yaml
llm_scan/rules/python/llama_index/generic/model-dos.yaml
llm_scan/rules/python/llama_index/generic/prompt-injection.yaml
llm_scan/rules/python/llama_index/generic/sensitive-info-disclosure.yaml
llm_scan/rules/python/llama_index/generic/sql-injection.yaml
llm_scan/rules/python/llama_index/generic/vector-store-poisoning.yaml
llm_scan/rules/python/mcp/generic/code-injection.yaml
llm_scan/rules/python/mcp/generic/command-injection.yaml
llm_scan/rules/python/mcp/generic/path-traversal.yaml
llm_scan/rules/python/mcp/generic/prompt-injection.yaml
llm_scan/rules/python/mcp/generic/sql-injection.yaml
llm_scan/rules/python/mcp/generic/ssrf.yaml
llm_scan/rules/python/openai/generic/LLM01_AI_USAGE.md
llm_scan/rules/python/openai/generic/code-injection.yaml
llm_scan/rules/python/openai/generic/command-injection.yaml
llm_scan/rules/python/openai/generic/data-exfiltration.yaml
llm_scan/rules/python/openai/generic/excessive-agency.yaml
llm_scan/rules/python/openai/generic/jailbreak.yaml
llm_scan/rules/python/openai/generic/model-dos.yaml
llm_scan/rules/python/openai/generic/overreliance.yaml
llm_scan/rules/python/openai/generic/prompt-injection.yaml
llm_scan/rules/python/openai/generic/sql-injection.yaml
llm_scan/rules/python/openai/generic/supply-chain.yaml
llm_scan/utils/__init__.py
llm_scan/utils/code_context.py
samples/aws/aws_code_injection.py
samples/aws/aws_command_injection.py
samples/aws/aws_prompt_injection.py
samples/aws/aws_sql_injection.py
samples/azure/azure_code_injection.py
samples/azure/azure_command_injection.py
samples/azure/azure_prompt_injection.py
samples/azure/azure_sql_injection.py
samples/cohere/cohere_code_injection.py
samples/cohere/cohere_command_injection.py
samples/cohere/cohere_prompt_injection.py
samples/cohere/cohere_sql_injection.py
samples/hugging-face/huggingface_code_injection.py
samples/hugging-face/huggingface_command_injection.py
samples/hugging-face/huggingface_model_dos.py
samples/hugging-face/huggingface_overreliance.py
samples/hugging-face/huggingface_path_traversal.py
samples/hugging-face/huggingface_prompt_injection.py
samples/hugging-face/huggingface_sensitive_info.py
samples/hugging-face/huggingface_sql_injection.py
samples/hugging-face/huggingface_supply_chain.py
samples/hugging-face/huggingface_training_poisoning.py
samples/langchain/langchain_agent_excessive_agency.py
samples/langchain/langchain_agent_file_ops.py
samples/langchain/langchain_agent_network.py
samples/langchain/langchain_agent_tools.py
samples/langchain/langchain_chain_injection.py
samples/langchain/langchain_code_injection.py
samples/langchain/langchain_palchain_injection.py
samples/langchain/langchain_python_repl.py
samples/langchain/langchain_template_injection.py
samples/langchain/langchain_tools_sample.py
samples/langgraph/langgraph_multi_agent_app.py
samples/langgraph/langgraph_sample.py
samples/llama-index/llamaindex_code_injection.py
samples/llama-index/llamaindex_command_injection.py
samples/llama-index/llamaindex_document_loader.py
samples/llama-index/llamaindex_model_dos.py
samples/llama-index/llamaindex_path_traversal.py
samples/llama-index/llamaindex_prompt_injection.py
samples/llama-index/llamaindex_sensitive_info.py
samples/llama-index/llamaindex_sql_injection.py
samples/llama-index/llamaindex_tools_sample.py
samples/llama-index/llamaindex_vector_store.py
samples/mcp/mcp_async_tool.py
samples/mcp/mcp_code_injection.py
samples/mcp/mcp_command_injection.py
samples/mcp/mcp_path_traversal.py
samples/mcp/mcp_prompt_handler.py
samples/mcp/mcp_prompt_injection.py
samples/mcp/mcp_resource.py
samples/mcp/mcp_sql_injection.py
samples/mcp/mcp_ssrf.py
samples/openai/llm01_prompt_injection.py
samples/openai/llm02_insecure_output.py
samples/openai/llm03_training_data_poisoning.py
samples/openai/llm04_model_dos.py
samples/openai/llm05_supply_chain.py
samples/openai/llm06_sensitive_info.py
samples/openai/llm07_insecure_plugin.py
samples/openai/llm08_excessive_agency.py
samples/openai/llm09_overreliance.py
samples/openai/llm10_model_theft.py
samples/openai/vulnerable_api.py
samples/openai/vulnerable_app.py
samples/openai/vulnerable_chatbot.py
samples/openai/vulnerable_script.py
samples/openai/vulnerable_workflow.py
tests/test_engine.py
tests/test_langchain_eval.py
tests/test_llamaindex_eval.py
tests/test_mcp_eval.py
tests/test_output.py
tests/test_runner.py
trusys_llm_scan.egg-info/PKG-INFO
trusys_llm_scan.egg-info/SOURCES.txt
trusys_llm_scan.egg-info/dependency_links.txt
trusys_llm_scan.egg-info/entry_points.txt
trusys_llm_scan.egg-info/requires.txt
trusys_llm_scan.egg-info/top_level.txt