Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
| button(type="submit") Sign Guestbook | ||
| ul | ||
| each entry in entries | ||
| li!= entry.message No newline at end of file |
There was a problem hiding this comment.
Security Vulnerability: The use of != in the template is dangerous as it renders raw HTML without escaping, creating a cross-site scripting (XSS) vulnerability. User-submitted content should always be escaped.
Please change:
li!= entry.messageTo:
li= entry.messageThis ensures that any HTML or JavaScript in user messages will be properly escaped rather than executed when rendered.
| li!= entry.message | |
| li= entry.message |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
No description provided.