top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the security parameter for XSS in CodeIgniter?

+7 votes
427 views
What are the security parameter for XSS in CodeIgniter?
posted Sep 16, 2015 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Codeigniter has got a cross-site scripting hack prevention filter. This filter either runs automatically or you can run it as per item basis, to filter all POST and COOKIE data that come across. The XSS filter will target the commonly used methods to trigger JavaScript or other types of code that attempt to hijack cookies or other malicious activity. If it detects any suspicious thing or anything disallowed is encountered, it will convert the data to character entities.

answer Oct 21, 2015 by Devyani
...