-
-
Notifications
You must be signed in to change notification settings - Fork 606
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Make HTML in node titles optional #171
Comments
I would consider html markup inside a node title a feature, not a bug ;-) (Is there some text missing in your message?):
|
Corrected the message. I forgot to escape html. If you allow node's title to contain html markup it is direct way to html injection. It is possible to set title as |
Would a new method What scenario are you thinking about, and can you give some references what danger you see? |
I agree that having ability to set HTML in the node is good. But when it used properly. In our current project we allow end users to create items that lately will be shown in the tree structure. In this case if user creates item with closing tag in title (like |
You are getting the user input so sanitize it before applying it. |
I would agree with @markbernard: The programmer is responsible to escape the HTML, before setting it as title. Closing this for now. |
Hi! I think that you should reconsider escaping the title upon rendering. Raw HTML in titles can be seen as a feature in some cases but now it's not always treated as raw HTML. When I look at the edit extension I can see that HTML in node titles are not allowed. When added back they are always escaped. To make the behaviour more flexible and explicit I would suggest an option, With the If you are interested I could send you a pull-request where I have added the option. /Albin |
Due to multiple requests, going to re-consider this |
👍 |
Please consider using of
innerText
for<span>
tag when constructing node's title to prevent HTML injection. For now if I have title of my node looking something like this:<hi>
then I will not see this title in the browser. It will be interpreted as html-tag.
The possible solution is to change line 2804
to something like this:
The text was updated successfully, but these errors were encountered: