I have been reading online that you should always escape data that users submit to the database by using {{...}}
in Laravel 5. However, I have a website where my members use TinyMCE. I'm filtering the script and PHP tags in TinyMCE but I want to show the text formatted with HTML.
So I use the {!!...!!}
Blade tag. How do forums and other websites that allow people to enter HTML stay protected from XSS? Is there any techniques I need to use in my website to decrease the chances of successful XSS attack?