├── .gitignore ├── 0.1 ├── Makefile ├── en │ ├── 0x00-Header.yaml │ ├── 0x01-Frontispiece.md │ ├── 0x02-Preface.md │ ├── 0x03-Using-ASVS.md │ ├── 0x04-Assessment_and_Certification.md │ ├── 0x10-V1-Configuration.md │ ├── 0x11-V2-Model-Lifecycle.md │ ├── 0x12-V3-Realtime-Training.md │ ├── 0x13-V4-Model-Memory-and-Storage.md │ ├── 0x14-V5-Secure-LLM-Integration.md │ ├── 0x15-V6-Agent-and-Plugins.md │ ├── 0x16-V7-Dependency-and-Component-Security.md │ ├── 0x17-V8-Monitoring-and-Anomaly-Detection.md │ ├── 0x18-V9-Model-Context-Protocol.md │ └── 0x90-Appendix-A_Glossary.md ├── images │ ├── lakera-logo.png │ ├── license.png │ ├── owaspLogo.png │ ├── owasp_logo_1c_notext.png │ ├── owasp_logo_header.png │ └── snyk-logo.png ├── templates │ ├── eisvogel.tex │ ├── header-eisvogel.tex │ └── reference.docx └── tools │ ├── __pycache__ │ ├── asvs.cpython-310.pyc │ ├── cyclonedx.cpython-310.pyc │ └── llmsvs.cpython-310.pyc │ ├── cyclonedx.py │ ├── export.py │ ├── generate_document.sh │ ├── install_deps.sh │ └── llmsvs.py ├── 404.html ├── COMPILING.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── SUPPORTERS.md ├── _config.yml ├── assets └── images │ ├── lakera-logo.png │ └── snyk-logo.png ├── docker └── Dockerfile ├── index.md ├── info.md ├── leaders.md └── release.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/.gitignore -------------------------------------------------------------------------------- /0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/Makefile -------------------------------------------------------------------------------- /0.1/en/0x00-Header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x00-Header.yaml -------------------------------------------------------------------------------- /0.1/en/0x01-Frontispiece.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x01-Frontispiece.md -------------------------------------------------------------------------------- /0.1/en/0x02-Preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x02-Preface.md -------------------------------------------------------------------------------- /0.1/en/0x03-Using-ASVS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x03-Using-ASVS.md -------------------------------------------------------------------------------- /0.1/en/0x04-Assessment_and_Certification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x04-Assessment_and_Certification.md -------------------------------------------------------------------------------- /0.1/en/0x10-V1-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x10-V1-Configuration.md -------------------------------------------------------------------------------- /0.1/en/0x11-V2-Model-Lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x11-V2-Model-Lifecycle.md -------------------------------------------------------------------------------- /0.1/en/0x12-V3-Realtime-Training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x12-V3-Realtime-Training.md -------------------------------------------------------------------------------- /0.1/en/0x13-V4-Model-Memory-and-Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x13-V4-Model-Memory-and-Storage.md -------------------------------------------------------------------------------- /0.1/en/0x14-V5-Secure-LLM-Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x14-V5-Secure-LLM-Integration.md -------------------------------------------------------------------------------- /0.1/en/0x15-V6-Agent-and-Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x15-V6-Agent-and-Plugins.md -------------------------------------------------------------------------------- /0.1/en/0x16-V7-Dependency-and-Component-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x16-V7-Dependency-and-Component-Security.md -------------------------------------------------------------------------------- /0.1/en/0x17-V8-Monitoring-and-Anomaly-Detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x17-V8-Monitoring-and-Anomaly-Detection.md -------------------------------------------------------------------------------- /0.1/en/0x18-V9-Model-Context-Protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x18-V9-Model-Context-Protocol.md -------------------------------------------------------------------------------- /0.1/en/0x90-Appendix-A_Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/en/0x90-Appendix-A_Glossary.md -------------------------------------------------------------------------------- /0.1/images/lakera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/lakera-logo.png -------------------------------------------------------------------------------- /0.1/images/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/license.png -------------------------------------------------------------------------------- /0.1/images/owaspLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/owaspLogo.png -------------------------------------------------------------------------------- /0.1/images/owasp_logo_1c_notext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/owasp_logo_1c_notext.png -------------------------------------------------------------------------------- /0.1/images/owasp_logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/owasp_logo_header.png -------------------------------------------------------------------------------- /0.1/images/snyk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/images/snyk-logo.png -------------------------------------------------------------------------------- /0.1/templates/eisvogel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/templates/eisvogel.tex -------------------------------------------------------------------------------- /0.1/templates/header-eisvogel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/templates/header-eisvogel.tex -------------------------------------------------------------------------------- /0.1/templates/reference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/templates/reference.docx -------------------------------------------------------------------------------- /0.1/tools/__pycache__/asvs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/__pycache__/asvs.cpython-310.pyc -------------------------------------------------------------------------------- /0.1/tools/__pycache__/cyclonedx.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/__pycache__/cyclonedx.cpython-310.pyc -------------------------------------------------------------------------------- /0.1/tools/__pycache__/llmsvs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/__pycache__/llmsvs.cpython-310.pyc -------------------------------------------------------------------------------- /0.1/tools/cyclonedx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/cyclonedx.py -------------------------------------------------------------------------------- /0.1/tools/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/export.py -------------------------------------------------------------------------------- /0.1/tools/generate_document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/generate_document.sh -------------------------------------------------------------------------------- /0.1/tools/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/install_deps.sh -------------------------------------------------------------------------------- /0.1/tools/llmsvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/0.1/tools/llmsvs.py -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/404.html -------------------------------------------------------------------------------- /COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/COMPILING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/SUPPORTERS.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/images/lakera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/assets/images/lakera-logo.png -------------------------------------------------------------------------------- /assets/images/snyk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/assets/images/snyk-logo.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/index.md -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/info.md -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/leaders.md -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-llm-verification-standard/HEAD/release.md --------------------------------------------------------------------------------