admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 | <html>
|
| 3 | <head>
|
| 4 |
|
Derek Allard | 404e35d | 2007-08-07 01:00:45 +0000 | [diff] [blame] | 5 | <title>CodeIgniter User Guide : Security</title>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 6 |
|
| 7 | <style type='text/css' media='all'>@import url('../userguide.css');</style>
|
| 8 | <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
|
| 9 |
|
admin | 17a890d | 2006-09-27 20:42:42 +0000 | [diff] [blame] | 10 | <script type="text/javascript" src="../nav/nav.js"></script>
|
admin | 2296fc3 | 2006-09-27 21:07:02 +0000 | [diff] [blame] | 11 | <script type="text/javascript" src="../nav/prototype.lite.js"></script>
|
admin | 17a890d | 2006-09-27 20:42:42 +0000 | [diff] [blame] | 12 | <script type="text/javascript" src="../nav/moo.fx.js"></script>
|
Derek Allard | b341237 | 2007-10-25 12:15:16 +0000 | [diff] [blame] | 13 | <script type="text/javascript" src="../nav/user_guide_menu.js"></script>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 14 |
|
| 15 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 16 | <meta http-equiv='expires' content='-1' />
|
| 17 | <meta http-equiv= 'pragma' content='no-cache' />
|
| 18 | <meta name='robots' content='all' />
|
Derek Allard | 3d879d5 | 2008-01-18 19:41:32 +0000 | [diff] [blame] | 19 | <meta name='author' content='ExpressionEngine Dev Team' />
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 20 | <meta name='description' content='CodeIgniter User Guide' />
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 21 |
|
| 22 | </head>
|
| 23 | <body>
|
| 24 |
|
| 25 | <!-- START NAVIGATION -->
|
| 26 | <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
|
| 27 | <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle.jpg" width="153" height="44" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
|
| 28 | <div id="masthead">
|
| 29 | <table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
| 30 | <tr>
|
Derek Allard | 39b622d | 2008-01-16 21:10:09 +0000 | [diff] [blame] | 31 | <td><h1>CodeIgniter User Guide Version 1.6.0</h1></td>
|
admin | c0d5d52 | 2006-10-30 19:40:35 +0000 | [diff] [blame] | 32 | <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 33 | </tr>
|
| 34 | </table>
|
| 35 | </div>
|
| 36 | <!-- END NAVIGATION -->
|
| 37 |
|
| 38 |
|
| 39 | <!-- START BREADCRUMB -->
|
| 40 | <table cellpadding="0" cellspacing="0" border="0" style="width:100%">
|
| 41 | <tr>
|
| 42 | <td id="breadcrumb">
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 43 | <a href="http://www.codeigniter.com/">CodeIgniter Home</a> ›
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 44 | <a href="../index.html">User Guide Home</a> ›
|
| 45 | Security
|
| 46 | </td>
|
Derek Allard | bc03091 | 2007-06-24 18:25:29 +0000 | [diff] [blame] | 47 | <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 48 | </tr>
|
| 49 | </table>
|
| 50 | <!-- END BREADCRUMB -->
|
| 51 |
|
| 52 | <br clear="all" />
|
| 53 |
|
| 54 |
|
| 55 | <!-- START CONTENT -->
|
| 56 | <div id="content">
|
| 57 |
|
| 58 | <h1>Security</h1>
|
| 59 |
|
| 60 | <p>This page describes some "best practices" regarding web security, and details
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 61 | CodeIgniter's internal security features.</p>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 62 |
|
| 63 |
|
| 64 | <h2>URI Security</h2>
|
| 65 |
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 66 | <p>CodeIgniter is fairly restrictive regarding which characters it allows in your URI strings in order to help
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 67 | minimize the possibility that malicious data can be passed to your application. URIs may only contain the following:
|
| 68 | </p>
|
| 69 |
|
| 70 | <ul>
|
| 71 | <li>Alpha-numeric text</li>
|
| 72 | <li>Tilde: ~ </li>
|
| 73 | <li>Period: .</li>
|
| 74 | <li>Colon: :</li>
|
| 75 | <li>Underscore: _</li>
|
| 76 | <li>Dash: -</li>
|
| 77 | </ul>
|
| 78 |
|
| 79 | <h2>GET, POST, and COOKIE Data</h2>
|
| 80 |
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 81 | <p>GET data is simply disallowed by CodeIgniter since the system utilizes URI segments rather than traditional URL query strings (unless
|
admin | e334c47 | 2006-10-21 19:44:22 +0000 | [diff] [blame] | 82 | you have the query string option enabled in your config file). The global GET
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 83 | array is <strong>unset</strong> by the Input class during system initialization.</p>
|
| 84 |
|
| 85 | <h2>Register_globals</h2>
|
| 86 |
|
| 87 | <p>During system initialization all global variables are unset, except those found in the $_POST and $_COOKIE arrays. The unsetting
|
| 88 | routine is effectively the same as register_globals = off.</p>
|
| 89 |
|
| 90 |
|
| 91 | <h2>magic_quotes_runtime</h2>
|
| 92 |
|
| 93 | <p>The magic_quotes_runtime directive is turned off during system initialization so that you don't have to remove slashes when
|
| 94 | retrieving data from your database.</p>
|
| 95 |
|
admin | 78ce3cc | 2006-10-02 02:58:03 +0000 | [diff] [blame] | 96 | <h1>Best Practices</h1>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 97 |
|
admin | e334c47 | 2006-10-21 19:44:22 +0000 | [diff] [blame] | 98 | <p>Before accepting any data into your application, whether it be POST data from a form submission, COOKIE data, URI data,
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 99 | XML-RPC data, or even data from the SERVER array, you are encouraged to practice this three step approach:</p>
|
| 100 |
|
| 101 | <ol>
|
| 102 |
|
| 103 | <li>Filter the data as if it were tainted.</li>
|
| 104 | <li>Validate the data to ensure it conforms to the correct type, length, size, etc. (sometimes this step can replace step one)</li>
|
| 105 | <li>Escape the data before submitting it into your database.</li>
|
| 106 | </ol>
|
| 107 |
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 108 | CodeIgniter provides the following functions to assist in this process:</p>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 109 |
|
| 110 | <ul>
|
| 111 |
|
| 112 | <li><h2>XSS Filtering</h2>
|
| 113 |
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 114 | <p>CodeIgniter comes with a Cross Site Scripting filter. This filter looks for commonly
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 115 | used techniques to embed malicious Javascript into your data, or other types of code that attempt to hijack cookies
|
admin | e334c47 | 2006-10-21 19:44:22 +0000 | [diff] [blame] | 116 | or do other malicious things. The XSS Filter is described <a href="../libraries/input.html">here</a>.
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 117 | </p>
|
| 118 | </li>
|
| 119 |
|
| 120 | <li><h2>Validate the data</h2>
|
| 121 |
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 122 | <p>CodeIgniter has a <a href="../libraries/validation.html">Validation Class</a> that assists you in validating, filtering, and prepping
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 123 | your data.</p>
|
| 124 | </li>
|
| 125 |
|
| 126 | <li><h2>Escape all data before database insertion</h2>
|
| 127 |
|
| 128 | <p>Never insert information into your database without escaping it. Please see the section that discusses
|
admin | 5808346 | 2006-09-24 17:58:27 +0000 | [diff] [blame] | 129 | <a href="../database/queries.html">queries</a> for more information.</p>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 130 |
|
| 131 | </li>
|
| 132 |
|
| 133 | </ul>
|
| 134 |
|
| 135 |
|
| 136 |
|
| 137 |
|
| 138 | </div>
|
| 139 | <!-- END CONTENT -->
|
| 140 |
|
| 141 |
|
| 142 | <div id="footer">
|
| 143 | <p>
|
| 144 | Previous Topic: <a href="alternative_php.html">Alternative PHP</a>
|
| 145 | ·
|
| 146 | <a href="#top">Top of Page</a> ·
|
| 147 | <a href="../index.html">User Guide Home</a> ·
|
| 148 | Next Topic: <a href="../libraries/benchmark.html">Benchmarking Class</a>
|
Derek Allard | c644128 | 2007-07-04 23:54:32 +0000 | [diff] [blame] | 149 | </p>
|
Derek Allard | d2df9bc | 2007-04-15 17:41:17 +0000 | [diff] [blame] | 150 | <p><a href="http://www.codeigniter.com">CodeIgniter</a> · Copyright © 2007 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
|
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 151 | </div>
|
| 152 |
|
| 153 | </body>
|
| 154 | </html> |