├── .github └── workflows │ └── validate-owasp-metadata.yaml ├── .gitignore ├── 404.html ├── CONTRIBUTING.md ├── Document ├── README.md ├── content │ ├── 1.0_Introduction.md │ ├── 1.1_Preface_and_Contributors.md │ ├── 1.2_Principles_of_AI_Testing.md │ ├── 1.3_Objectives_of_AI_Testing_Guide.md │ ├── 2.0_Threat_Modeling_for_AI_Systems.md │ ├── 2.1.1_Architectural_Mapping_of_OWASP_Threats.md │ ├── 2.1.2_Identify_RAI_threats.md │ ├── 2.1_Identify_AI_Threats.md │ ├── 3.0_OWASP_AI_Testing_Guide_Framework.md │ ├── 3.1_AI_Application_Testing.md │ ├── 3.2_AI_Model_Testing.md │ ├── 3.3_AI_Infrastructure_Testing.md │ ├── 3.4_AI_Data_Testing.md │ ├── 4.0_Appendices_and_References.md │ ├── 4.1_Appendix_A.md │ ├── 4.2_Appendix_B.md │ ├── 4.3_Appendix_C.md │ ├── 4.4_Appendix_D.md │ ├── 4.5_Appendix_E.md │ ├── 4.6_References.md │ └── tests │ │ ├── AITG-APP-01_Testing_for_Prompt_Injection.md │ │ ├── AITG-APP-02_Testing_for_Indirect_Prompt_Injection.md │ │ ├── AITG-APP-03_Testing_for_Sensitive_Data_Leak.md │ │ ├── AITG-APP-04_Testing_for_Input_Leakage.md │ │ ├── AITG-APP-05_Testing_for_Unsafe_Outputs.md │ │ ├── AITG-APP-06_Testing_for_Agentic_Behavior_Limits.md │ │ ├── AITG-APP-07_Testing_for_Prompt_Disclosure.md │ │ ├── AITG-APP-08_Testing_for_Embedding_Manipulation.md │ │ ├── AITG-APP-09_Testing_for_Model_Extraction.md │ │ ├── AITG-APP-10_Testing_for_Content_Bias.md │ │ ├── AITG-APP-11_Testing_for_Hallucinations.md │ │ ├── AITG-APP-12_Testing_for_Toxic_Output.md │ │ ├── AITG-APP-13_Testing_for_Over-Reliance_on_AI.md │ │ ├── AITG-APP-14_Testing_for_Explainability_and_Interpretability.md │ │ ├── AITG-DAT-01_Testing_for_Training_Data_Exposure.md │ │ ├── AITG-DAT-02_Testing_for_Runtime_Exfiltration.md │ │ ├── AITG-DAT-03_Testing_for_Dataset_Diversity_and_Coverage.md │ │ ├── AITG-DAT-04_Testing_for_Harmful_Content_in_Data.md │ │ ├── AITG-DAT-05_Testing_for_Data_Minimization_and_Consent.md │ │ ├── AITG-INF-01_Testing_for_Supply_Chain_Tampering.md │ │ ├── AITG-INF-02_Testing_for_Resource_Exhaustion.md │ │ ├── AITG-INF-03_Testing_for_Plugin_Boundary_Violations.md │ │ ├── AITG-INF-04_Testing_for_Capability_Misuse.md │ │ ├── AITG-INF-05_Testing_for_Fine-tuning_Poisoning.md │ │ ├── AITG-INF-06_Testing_for_Dev-Time_Model_Theft.md │ │ ├── AITG-MOD-01_Testing_for_Evasion_Attacks.md │ │ ├── AITG-MOD-02_Testing_for_Runtime_Model_Poisoning.md │ │ ├── AITG-MOD-03_Testing_for_Poisoned_Training_Sets.md │ │ ├── AITG-MOD-04_Testing_for_Membership_Inference.md │ │ ├── AITG-MOD-05_Testing_for_Inversion_Attacks.md │ │ ├── AITG-MOD-06_Testing_for_Robustness_to_New_Data.md │ │ ├── AITG-MOD-07_Testing_for_Goal_Alignment.md │ │ └── TestTemplate.md └── images │ ├── AI-System-Architecture-TM.pdf │ ├── AI-System-Architecture-TM.png │ ├── AISystemArchitecture.png │ ├── AIarchitectureTM.png │ ├── IndirectPromptInjection.png │ ├── Prompt.png │ ├── PromptInjection.png │ ├── RT-Threats.png │ ├── SAIF_Threat_Model_Diagram.png │ ├── hallucination.png │ └── tay.png ├── Gemfile ├── LICENSE.md ├── PDFGenerator ├── Cover.png ├── PDFGenFinal.py ├── README.md ├── ToC.md ├── V1.0 │ └── OWASP-AI-Testing-Guide-v1.pdf ├── config.txt ├── generate_pdf_preview.py └── header-bg.jpg ├── README.md ├── SECURITY.md ├── _config.yml ├── assets └── images │ ├── AISystemArchitecture.png │ ├── OWASP_AI_Testing_Guide.png │ └── README.md ├── index.md ├── info.md ├── leaders.md ├── project.owasp.yaml ├── tab_contributing.md └── tab_roadmap.md /.github/workflows/validate-owasp-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/.github/workflows/validate-owasp-metadata.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/404.html -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/README.md -------------------------------------------------------------------------------- /Document/content/1.0_Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/1.0_Introduction.md -------------------------------------------------------------------------------- /Document/content/1.1_Preface_and_Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/1.1_Preface_and_Contributors.md -------------------------------------------------------------------------------- /Document/content/1.2_Principles_of_AI_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/1.2_Principles_of_AI_Testing.md -------------------------------------------------------------------------------- /Document/content/1.3_Objectives_of_AI_Testing_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/1.3_Objectives_of_AI_Testing_Guide.md -------------------------------------------------------------------------------- /Document/content/2.0_Threat_Modeling_for_AI_Systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/2.0_Threat_Modeling_for_AI_Systems.md -------------------------------------------------------------------------------- /Document/content/2.1.1_Architectural_Mapping_of_OWASP_Threats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/2.1.1_Architectural_Mapping_of_OWASP_Threats.md -------------------------------------------------------------------------------- /Document/content/2.1.2_Identify_RAI_threats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/2.1.2_Identify_RAI_threats.md -------------------------------------------------------------------------------- /Document/content/2.1_Identify_AI_Threats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/2.1_Identify_AI_Threats.md -------------------------------------------------------------------------------- /Document/content/3.0_OWASP_AI_Testing_Guide_Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/3.0_OWASP_AI_Testing_Guide_Framework.md -------------------------------------------------------------------------------- /Document/content/3.1_AI_Application_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/3.1_AI_Application_Testing.md -------------------------------------------------------------------------------- /Document/content/3.2_AI_Model_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/3.2_AI_Model_Testing.md -------------------------------------------------------------------------------- /Document/content/3.3_AI_Infrastructure_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/3.3_AI_Infrastructure_Testing.md -------------------------------------------------------------------------------- /Document/content/3.4_AI_Data_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/3.4_AI_Data_Testing.md -------------------------------------------------------------------------------- /Document/content/4.0_Appendices_and_References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.0_Appendices_and_References.md -------------------------------------------------------------------------------- /Document/content/4.1_Appendix_A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.1_Appendix_A.md -------------------------------------------------------------------------------- /Document/content/4.2_Appendix_B.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.2_Appendix_B.md -------------------------------------------------------------------------------- /Document/content/4.3_Appendix_C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.3_Appendix_C.md -------------------------------------------------------------------------------- /Document/content/4.4_Appendix_D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.4_Appendix_D.md -------------------------------------------------------------------------------- /Document/content/4.5_Appendix_E.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.5_Appendix_E.md -------------------------------------------------------------------------------- /Document/content/4.6_References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/4.6_References.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-01_Testing_for_Prompt_Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-01_Testing_for_Prompt_Injection.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-02_Testing_for_Indirect_Prompt_Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-02_Testing_for_Indirect_Prompt_Injection.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-03_Testing_for_Sensitive_Data_Leak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-03_Testing_for_Sensitive_Data_Leak.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-04_Testing_for_Input_Leakage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-04_Testing_for_Input_Leakage.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-05_Testing_for_Unsafe_Outputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-05_Testing_for_Unsafe_Outputs.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-06_Testing_for_Agentic_Behavior_Limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-06_Testing_for_Agentic_Behavior_Limits.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-07_Testing_for_Prompt_Disclosure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-07_Testing_for_Prompt_Disclosure.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-08_Testing_for_Embedding_Manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-08_Testing_for_Embedding_Manipulation.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-09_Testing_for_Model_Extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-09_Testing_for_Model_Extraction.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-10_Testing_for_Content_Bias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-10_Testing_for_Content_Bias.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-11_Testing_for_Hallucinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-11_Testing_for_Hallucinations.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-12_Testing_for_Toxic_Output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-12_Testing_for_Toxic_Output.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-13_Testing_for_Over-Reliance_on_AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-13_Testing_for_Over-Reliance_on_AI.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-APP-14_Testing_for_Explainability_and_Interpretability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-APP-14_Testing_for_Explainability_and_Interpretability.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-DAT-01_Testing_for_Training_Data_Exposure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-DAT-01_Testing_for_Training_Data_Exposure.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-DAT-02_Testing_for_Runtime_Exfiltration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-DAT-02_Testing_for_Runtime_Exfiltration.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-DAT-03_Testing_for_Dataset_Diversity_and_Coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-DAT-03_Testing_for_Dataset_Diversity_and_Coverage.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-DAT-04_Testing_for_Harmful_Content_in_Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-DAT-04_Testing_for_Harmful_Content_in_Data.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-DAT-05_Testing_for_Data_Minimization_and_Consent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-DAT-05_Testing_for_Data_Minimization_and_Consent.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-01_Testing_for_Supply_Chain_Tampering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-01_Testing_for_Supply_Chain_Tampering.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-02_Testing_for_Resource_Exhaustion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-02_Testing_for_Resource_Exhaustion.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-03_Testing_for_Plugin_Boundary_Violations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-03_Testing_for_Plugin_Boundary_Violations.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-04_Testing_for_Capability_Misuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-04_Testing_for_Capability_Misuse.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-05_Testing_for_Fine-tuning_Poisoning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-05_Testing_for_Fine-tuning_Poisoning.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-INF-06_Testing_for_Dev-Time_Model_Theft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-INF-06_Testing_for_Dev-Time_Model_Theft.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-01_Testing_for_Evasion_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-01_Testing_for_Evasion_Attacks.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-02_Testing_for_Runtime_Model_Poisoning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-02_Testing_for_Runtime_Model_Poisoning.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-03_Testing_for_Poisoned_Training_Sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-03_Testing_for_Poisoned_Training_Sets.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-04_Testing_for_Membership_Inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-04_Testing_for_Membership_Inference.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-05_Testing_for_Inversion_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-05_Testing_for_Inversion_Attacks.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-06_Testing_for_Robustness_to_New_Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-06_Testing_for_Robustness_to_New_Data.md -------------------------------------------------------------------------------- /Document/content/tests/AITG-MOD-07_Testing_for_Goal_Alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/AITG-MOD-07_Testing_for_Goal_Alignment.md -------------------------------------------------------------------------------- /Document/content/tests/TestTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/content/tests/TestTemplate.md -------------------------------------------------------------------------------- /Document/images/AI-System-Architecture-TM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/AI-System-Architecture-TM.pdf -------------------------------------------------------------------------------- /Document/images/AI-System-Architecture-TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/AI-System-Architecture-TM.png -------------------------------------------------------------------------------- /Document/images/AISystemArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/AISystemArchitecture.png -------------------------------------------------------------------------------- /Document/images/AIarchitectureTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/AIarchitectureTM.png -------------------------------------------------------------------------------- /Document/images/IndirectPromptInjection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/IndirectPromptInjection.png -------------------------------------------------------------------------------- /Document/images/Prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/Prompt.png -------------------------------------------------------------------------------- /Document/images/PromptInjection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/PromptInjection.png -------------------------------------------------------------------------------- /Document/images/RT-Threats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/RT-Threats.png -------------------------------------------------------------------------------- /Document/images/SAIF_Threat_Model_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/SAIF_Threat_Model_Diagram.png -------------------------------------------------------------------------------- /Document/images/hallucination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/hallucination.png -------------------------------------------------------------------------------- /Document/images/tay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Document/images/tay.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PDFGenerator/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/Cover.png -------------------------------------------------------------------------------- /PDFGenerator/PDFGenFinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/PDFGenFinal.py -------------------------------------------------------------------------------- /PDFGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/README.md -------------------------------------------------------------------------------- /PDFGenerator/ToC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/ToC.md -------------------------------------------------------------------------------- /PDFGenerator/V1.0/OWASP-AI-Testing-Guide-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/V1.0/OWASP-AI-Testing-Guide-v1.pdf -------------------------------------------------------------------------------- /PDFGenerator/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/config.txt -------------------------------------------------------------------------------- /PDFGenerator/generate_pdf_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/generate_pdf_preview.py -------------------------------------------------------------------------------- /PDFGenerator/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/PDFGenerator/header-bg.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/images/AISystemArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/assets/images/AISystemArchitecture.png -------------------------------------------------------------------------------- /assets/images/OWASP_AI_Testing_Guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/assets/images/OWASP_AI_Testing_Guide.png -------------------------------------------------------------------------------- /assets/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/assets/images/README.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/index.md -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/info.md -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/leaders.md -------------------------------------------------------------------------------- /project.owasp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/project.owasp.yaml -------------------------------------------------------------------------------- /tab_contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/tab_contributing.md -------------------------------------------------------------------------------- /tab_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-ai-testing-guide/HEAD/tab_roadmap.md --------------------------------------------------------------------------------