Comment on What will happen if we put a semi-colon after a for loop in C++?
octoperson@sh.itjust.works 1 year agoYour less thans got HTML-escaped into < and I spent embarrassingly long trying to figure out what pointer magic you were trying to demonstrate
plistig@feddit.de 1 year ago
Yeah, both Voyager and the normal lemmy web client escape the less-than sign. I tried it twice on both clients.
shagie@programming.dev 1 year ago
Some time back there was an attack on Lemmy where (if I recall correctly) HTML embedded in emoji allowed tokens of users viewing the emoji to get stolen… which included administrators auth tokens. There was much havoc wrecked that evening.
The mitigation for this was “all HTML entities are escaped”. Doesn’t matter where they are - they’re escaped. This sometimes leads to them being doubly escaped when rendering. Less than, ampersand, and greater than all get doubly escaped ( > & < ).