Changes

Jump to navigation Jump to search
m
Line 1: Line 1:  +
<!-- BEGIN origin interlang links -->
 +
<!-- You can edit this section but do NOT remove these comments
 +
    Links below will be automatically replicated on translated pages by PolyglotBot -->
 +
[[fr:Informations_sécurité]]
 +
[[es:Información_de_seguridad]]
 +
<!-- END interlang links -->
 +
 
[[Category:Admin]]
 
[[Category:Admin]]
= [[File:securite.png]] Alerts =
+
[[Category:Admin_en]]
 +
 
 +
=[[File:securite.png]] Alerts=
 
Last update: {{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY}}
 
Last update: {{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY}}
   −
Some XSS holes have been reported. They are a small risk as they are in page that need to be loggued to be used to execute javascript with a forged url of your Dolibarr. So no fix will be provided until 3.0, available for end of year.
+
Some SQL injections and CSRF vulnerabilities have been reported. They are a small risk as they are in page that need to be logged to be used. Fix is available into {{Template:SafeVersion}}.
 +
 
 +
Note: You can download from GitHub the '''intermediate''' versions (not yet realeased maintenance package) from [https://github.com/Dolibarr/dolibarr/archive/9.0.zip version 9] and [https://github.com/Dolibarr/dolibarr/archive/10.0.zip version 10]
   −
= [[File:art.png]] Features =
+
=[[File:art.png]] Features=
 
Dolibarr implements several security features. Among them :
 
Dolibarr implements several security features. Among them :
    
'''Encryption'''
 
'''Encryption'''
* User passwords can be encrypted in database <sup>[*7]</sup> <sup>[*8]</sup>.
+
 
* Database technical password can be obfuscated into the [[Configuration_file|Dolibarr configuration file]] (conf.php) <sup>[*8]</sup>.
+
*User passwords are encrypted in database <sup>[*7]</sup> <sup>[*8]</sup>.
* Possibility to force HTTPS <sup>[*9]</sup>.
+
*Database technical password can be obfuscated into the [[Configuration_file|Dolibarr configuration file]] (conf.php) <sup>[*8]</sup>.
 +
*Possibility to force HTTPS <sup>[*9]</sup>.
 +
 
 +
<source lang="php">
 +
//conf/conf.php file
 +
//example of $dolibarr_main_force_https  configuration
 +
$dolibarr_main_force_https = '1';//to force https
 +
</source>
 +
 
 +
{| class="wikitable" style="width:100%;"
 +
! scope="col" |Values
 +
! scope="col" |Description
 +
 
 +
|-
 +
| style="width:50%;" |
 +
0
 +
| style="width:50%;" |
 +
No forced redirect
 +
 
 +
|-
 +
| style="width:50%;" |
 +
1
 +
| style="width:50%;" |
 +
Force redirect to https, until SCRIPT_URI start with https into response
 +
 
 +
|-
 +
| style="width:50%;" |
 +
2
 +
| style="width:50%;" |
 +
Force redirect to https, until SERVER["HTTPS"] is 'on' into response
 +
 
 +
|}
    
'''Hacks and cracks'''
 
'''Hacks and cracks'''
* Works with register_globals on or off (off highly recommended) <sup>[*2]</sup>.
+
 
* Works with PHP safe_mode on or off (on recommended) <sup>[*3]</sup>.
+
*Works with register_globals on or off (off highly recommended) <sup>[*2]</sup>.
* Production option to disable any technical information leakage like debug, error stacktrace, version informations (See [[Configuration_file|configuration file]]) <sup>[*6]</sup>.  
+
*Works with PHP safe_mode on or off (on recommended) <sup>[*3]</sup>.
* Protection against SQL injection <sup>[*2]</sup>.
+
*Production option to disable any technical information leakage like debug, error stacktrace, version informations (See [[Configuration_file|configuration file]]) <sup>[*6]</sup>.
* Protection against XSS injection (Cross Site Scripting) <sup>[*1]</sup>.
+
*Protection against SQL injection <sup>[*2]</sup>.
* Protection against CSRF (Cross Site Request Forgery) <sup>[*5]</sup>.
+
*Protection against XSS injection (Cross Site Scripting) <sup>[*1]</sup>.
 +
*Protection against CSRF (Cross Site Request Forgery) <sup>[*5]</sup>.
 +
 
 +
Note that it is also recommanded to protect your web server by disabled Apache option
 +
<source lang="ini">
 +
AcceptPathInfo Off
 +
</source>
    
'''Pages and files access'''
 
'''Pages and files access'''
* Pages and contents are protected by centralized entry code to check permissions (granted on groups or users for each functional module) <sup>[*4]</sup> <sup>[*10]</sup>.
+
 
* Files saved by Dolibarr are stored in a different root directory than web application (so they can't be downloaded without passing by the Dolibarr wrapper) <sup>[*3]</sup> <sup>[*10]</sup>.
+
*Pages and contents are protected by centralized entry code to check permissions (granted on groups or users for each functional module) <sup>[*4]</sup> <sup>[*10]</sup>.
* Dolibarr directories content can't be accessed even if Apache option Indexes has be forgotten to on (should not) <sup>[*3]</sup>.
+
*Files saved by Dolibarr are stored in a different root directory than web application (so they can't be downloaded without passing by the Dolibarr wrapper) <sup>[*3]</sup> <sup>[*10]</sup>.
 +
*Dolibarr directories content can't be accessed even if Apache option Indexes has be forgotten to on (should not) <sup>[*3]</sup>.
    
'''Login protection'''
 
'''Login protection'''
* Delay anti brute force cracking on login page <sup>[*7]</sup>.
+
 
* Graphical code (CAPTCHA) against robots on login page <sup>[*7]</sup>.
+
*Delay anti brute force cracking on login page <sup>[*7]</sup>.
* No passwords in logs, even in technical logs <sup>[*7]</sup>.
+
*Option for graphical code (CAPTCHA) against robots on login page <sup>[*7]</sup>.
* Internal logger to save permanently all Dolibarr events about user's administration and successful or failed logins.
+
*No passwords in logs, even in technical logs <sup>[*7]</sup>.
 +
*Internal logger to save permanently all Dolibarr events about user's administration and successful or failed logins or administration events (user or group or permission changes).
    
'''Viruses'''
 
'''Viruses'''
* Possibility to run an external anti-virus on every uploaded files <sup>[*3]</sup>.
      +
*Possibility to run an external anti-virus on every uploaded files <sup>[*3]</sup>.
    +
 
----
 
----
 
<sup>(*X)</sup> This solution is part of protection used to solve vulnerabilities classified by the [http://www.owasp.org/index.php/Top_10_2007 OWASP Top Ten] at range number X.
 
<sup>(*X)</sup> This solution is part of protection used to solve vulnerabilities classified by the [http://www.owasp.org/index.php/Top_10_2007 OWASP Top Ten] at range number X.

Navigation menu