mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.format: Escape ASCII control characters in output
This should offer some protection against doing evil things to terminals. Doesn't protect against pure broken UTF-8 garbage however. See #734
This commit is contained in:
parent
e21e4b2b24
commit
3f1d93bb4e
2 changed files with 21 additions and 1 deletions
|
@ -15,5 +15,10 @@ describe("util.format", function()
|
|||
assert.equal("[1.5]", format("%d", 1.5));
|
||||
assert.equal("[7.3786976294838e+19]", format("%d", 73786976294838206464));
|
||||
end);
|
||||
|
||||
it("escapes ascii control stuff", function ()
|
||||
assert.equal("␁", format("%s", "\1"));
|
||||
end);
|
||||
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue