aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/html.c b/html.c
index 7b6495b..d713fbb 100644
--- a/html.c
+++ b/html.c
@@ -2242,6 +2242,11 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
if (content && xs_str_in(content, o_href) != -1)
continue;
+ /* drop silently any attachment that may include JavaScript */
+ if (strcmp(type, "image/svg+xml") == 0 ||
+ strcmp(type, "text/html") == 0)
+ continue;
+
/* do this attachment include an icon? */
const xs_dict *icon = xs_dict_get(a, "icon");
if (xs_type(icon) == XSTYPE_DICT) {