From f62f12960d081895960d0dc6fde8364f25d651b6 Mon Sep 17 00:00:00 2001 From: john Date: Wed, 6 Mar 2024 09:04:12 -0500 Subject: [PATCH] Fixes #118 Escape the text input from bootbox prompt. Related: [bootbox/issues/661](https://github.com/bootboxjs/bootbox/issues/661) --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index b99bccf..00f3dc0 100644 --- a/index.html +++ b/index.html @@ -486,7 +486,7 @@ if (result !== null) { resetDepth(); s3exp_config = { - Bucket: result, + Bucket: htmlEscape(result), Delimiter: '/' }; (s3exp_lister = s3list(s3exp_config, s3draw)).go();