Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

defect: fix telegram bot error. #2281

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

defect: fix telegram bot error. #2281

wants to merge 3 commits into from

Conversation

deusyu
Copy link

@deusyu deusyu commented Jan 22, 2024

Telegram Notification Failed:{"ok":false,"error_code":400,"description":"Bad Request: can't parse entities: Character '.' is reserved and must be escaped with the preceding '\'"}

Telegram Notification Failed:{"ok":false,"error_code":400,"description":"Bad Request: can't parse entities: Character '.' is reserved and must be escaped with the preceding '\\'"}
Comment on lines 257 to 259
const comment = self.comment
.replace(/<a href="(.*?)">(.*?)<\/a>/g, '[Link:$2]')
.replace(/<[^>]+>/g, '');
.replace(/<[^>]+>/g, '')

Check failure

Code scanning / CodeQL

Incomplete multi-character sanitization High

This string may still contain
<script
, which may cause an HTML element injection vulnerability.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant