From c2967837dd867b59d39566c8c477ede214223db3 Mon Sep 17 00:00:00 2001 From: betalars Date: Mon, 14 Oct 2024 14:41:17 +0200 Subject: [PATCH] @GDScript DOC: warning against possible remote code execution trough str_to_var --- doc/classes/@GlobalScope.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 55d00b6cf90..1ee3174243e 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -1357,6 +1357,7 @@ GD.Print(dict["a"]); // Prints 1 [/csharp] [/codeblocks] + [b]Warning:[/b] Using this function on untrusted Strings can allow remote code execution. Use with caution.