diff --git a/client/html/js/default.js b/client/html/js/default.js
index 3f06cec..8682cc1 100644
--- a/client/html/js/default.js
+++ b/client/html/js/default.js
@@ -42,6 +42,8 @@ function pushMessage(text, color = 'white', gradient = false, icon = false) {
if (text.length < 1) return;
if (gradient !== false && Array.isArray(gradient) === false) return;
+ text = text.replace(/[<>]/gi, "");
+
let style = `color:${color};`
if (gradient)
@@ -180,4 +182,4 @@ alt.on('chat:sendInput', sendInput);
alt.on('chat:scrollMessagesList', scrollMessagesList);
alt.on('chat:addInputToHistory', addInputToHistory);
alt.on('chat:shiftHistoryUp', shiftHistoryUp);
-alt.on('chat:shiftHistoryDown', shiftHistoryDown);
\ No newline at end of file
+alt.on('chat:shiftHistoryDown', shiftHistoryDown);