Welcome Guest, Not a member yet? Register   Sign In
I want to know best practice about CI3 security.
#1
Wink 
(This post was last modified: 05-06-2015, 12:08 AM by Vimal.)

Hello frends
I almost completed my first project with codeigniter 3.0 i started when Rc released.
I want to know tips for make it more secure..
Suggest me if any best practice should i do with ci3.0 Smile
Reply
#2

(This post was last modified: 05-06-2015, 04:04 AM by davidgv88.)

Hi Vimal.

Look this:

http://www.codeigniter.com/user_guide/ge...urity.html

Always use $this->input->post('value',TRUE); The TRUE is important for prevent XSS Injections.

David
Reply
#3

(05-06-2015, 04:03 AM)davidgv88 Wrote: Hi Vimal.

Look this:

http://www.codeigniter.com/user_guide/ge...urity.html

Always use $this->input->post('value',TRUE); The TRUE is important for prevent XSS Injections.

David

Using good validations is not better then this ?
Reply
#4

(05-06-2015, 06:15 AM)GrigoreMihai Wrote:
(05-06-2015, 04:03 AM)davidgv88 Wrote: Hi Vimal.

Look this:

http://www.codeigniter.com/user_guide/ge...urity.html

Always use $this->input->post('value',TRUE); The TRUE is important for prevent XSS Injections.

David

Using good validations is not better then this ?

Yes!! I Forgot!

You can use the form validation http://www.codeigniter.com/user_guide/li...ation.html
Reply
#5

From http://www.codeigniter.com/user_guide/ge...-filtering
Quote:XSS filtering should only be performed on output. Filtering input data may modify the data in undesirable ways, including stripping special characters from passwords, which reduces security instead of improving it.

Passing TRUE to the second parameter of $this->input->post() passes your input through the XSS filter, which should not be done.

On output, you can pass your data (or individual values from your data) through $this->security->xss_clean() as needed.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB