From b64a1b7c42f2e7ed3214f5911bd8563c6cebaebc Mon Sep 17 00:00:00 2001 From: erik-krogh Date: Mon, 10 Oct 2022 15:14:49 +0200 Subject: [PATCH] add a missing qldoc --- .../security/UnsafeShellCommandConstructionCustomizations.qll | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ruby/ql/lib/codeql/ruby/security/UnsafeShellCommandConstructionCustomizations.qll b/ruby/ql/lib/codeql/ruby/security/UnsafeShellCommandConstructionCustomizations.qll index a235c53462f..94b16935a55 100644 --- a/ruby/ql/lib/codeql/ruby/security/UnsafeShellCommandConstructionCustomizations.qll +++ b/ruby/ql/lib/codeql/ruby/security/UnsafeShellCommandConstructionCustomizations.qll @@ -11,6 +11,9 @@ private import codeql.ruby.frameworks.core.Gem::Gem as Gem private import codeql.ruby.AST as Ast private import codeql.ruby.Concepts as Concepts +/** + * Module containing sources, sinks, and sanitizers for shell command constructed from library input. + */ module UnsafeShellCommandConstruction { /** A source for shell command constructed from library input vulnerabilities. */ abstract class Source extends DataFlow::Node { }