We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38ff7ec commit 01f0625Copy full SHA for 01f0625
src/core/operations/TextEncodingBruteForce.mjs
@@ -79,7 +79,7 @@ class TextEncodingBruteForce extends Operation {
79
let table = "<table class='table table-hover table-sm table-bordered table-nonfluid'><tr><th>Encoding</th><th>Value</th></tr>";
80
81
for (const enc in encodings) {
82
- const value = Utils.printable(encodings[enc], true);
+ const value = Utils.escapeHtml(Utils.printable(encodings[enc], true));
83
table += `<tr><td>${enc}</td><td>${value}</td></tr>`;
84
}
85
0 commit comments