Skip to content Skip to sidebar Skip to footer
Showing posts with the label Xss

Some Chars Encoded During Post While Others Are Not

TL;DR CodeIgniters' Security Class directly manipulates your Globals such as $_POST and it find… Read more Some Chars Encoded During Post While Others Are Not

Php Security - Combining Functionality Of Strip_tags(); & Htmlspecialchars();

I want my forum users to be able to insert links and other allowed tags. For example I would like t… Read more Php Security - Combining Functionality Of Strip_tags(); & Htmlspecialchars();

Using Html Purifier On A Site With Only Plain Text Input

I would appreciate an answer to settle a disagreement between me and some co-workers. We have a typ… Read more Using Html Purifier On A Site With Only Plain Text Input

How To Use Htmlpurifier To Allow Entire Document To Be Passed Including Html,head,title,body

Given the code below, how do I use htmlpurifier to allow the entire contents to pass through. I wan… Read more How To Use Htmlpurifier To Allow Entire Document To Be Passed Including Html,head,title,body

Prevent Xss But Allow All Html Tags

I am building a blog and currently im finishing the admin panel. Since i will be mostly who will be… Read more Prevent Xss But Allow All Html Tags

Filtering Javascript Out Of Html

I have a rich text editor that passes HTML to the server. That HTML is then displayed to other user… Read more Filtering Javascript Out Of Html

Sql Preventation Of Xss

Hey guys so Ive got a question, is there a something I could use when inserting data into the SQL t… Read more Sql Preventation Of Xss

Html: Should I Encode Greater Than Or Not? ( > > )

When encoding possibly unsafe data, is there a reason to encode >? It validates either way. The… Read more Html: Should I Encode Greater Than Or Not? ( > > )