I'm trying to permit to users to post links in their posts. I use auto_link gem.
Is it safe in this way from xss and other attacks?
def show_content(content_with_links)
auto_link (sanitize content_with_links.join(" "), tags: %w(a))
end
I'm trying to permit to users to post links in their posts. I use auto_link gem.
Is it safe in this way from xss and other attacks?
def show_content(content_with_links)
auto_link (sanitize content_with_links.join(" "), tags: %w(a))
end
Copyright © 2021 Jogjafile Inc.
According to the README, it is protected from malicious scripts: