diff --git a/netbox/extras/models/models.py b/netbox/extras/models/models.py index 90e8027b452..74110cf228d 100644 --- a/netbox/extras/models/models.py +++ b/netbox/extras/models/models.py @@ -315,7 +315,7 @@ def render(self, context): text = clean_html(text, allowed_schemes) # Sanitize link - link = urllib.parse.quote(link, safe='/:?&=%+[]@#,;') + link = urllib.parse.quote(link, safe='/:?&=%+[]@#,;!') # Verify link scheme is allowed result = urllib.parse.urlparse(link)