Search Regex #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The search functionality currently allows users to enter arbitrary regex patterns. This causes a panic on invalid regex and some weird stuff.
Implement sanitization to restrict allowed regex. The input should only permit:
^
) and end ($
) anchorsAll other characters or constructs will be escaped.