Security Concept
We at OpenDXP take security very seriously and recommend a multi-layer security concept to keep OpenDXP-based solutions safe.
As OpenDXP is a framework and not an out-of-the box solution, this multi-layer security concept has parts that are provided by the core framework itself, and parts that need to be provided by the solution partner, that delivers the solution.
OpenDXP Core Level
Following Coding Standards & Best Practices
To minimize the risk of security issues, we follow established and proven php coding standards as well as industry best practises. The coding standards are based on so called PSRs (PHP Standards Recommendations) developed by the PHP Framework Interop Group (PHP-FIG) and are enforced during our continuous integration process at Github.
OpenDXP is also a voting member of the PHP-FIG.
Dependency Management
OpenDXP is based on the Symfony framework (PHP industry standard framework) and multiple additional components and dependencies. All Dependencies are managed through Composer (the standard PHP dependency management solution) which makes it easy and comfortable to keep all dependencies of OpenDXP and your project up-to-date and safe.
Since OpenDXP is a Symfony application, it can utilize all Symfony tools, like the Symfony Security Checker.
Content Security Policy
OpenDXP provides a Content Security Policy handler, which enables an additional security layer to protect from certain attacks like Cross-Site Scripting (XSS) and data injection and so on, by adding Content-Security-Policy HTTP response header with nonce to every request in Admin interface. The generated nonce encoded string is matched with the one provided in link or inline javascript, which allows them to be executed safely.
Content Security Policy is enabled by default.
Read more about Content Security Policy.
To allow external urls for each directive, add a custom configuration in config/config.yaml and provide a list in the configuration:
# config/config.yaml
opendxp_admin:
admin_csp_header:
additional_urls:
script-src:
- 'https://oreo.cat/scripts/meow.js'
- 'https://bagheera.cat'
style-src:
- 'https://oreo.cat/scripts/meow.css'
To disable CSP set the enabled property to false in your configuration:
# config/config.yaml
opendxp_admin:
admin_csp_header:
enabled: false
In case, you are using third party bundles or custom implementation that extends the admin backend interface with custom views then you would need to use generated nonce string in your scripts. If a script does not contain valid a nonce, then it is stopped from being executed wih a warning in console like:
Refused to execute inline script because it violates the following Content Security Policy directive: ...
This issue can be resolved either by using OpenDXP Headscript extension or add nonce script to inline scripts as follows:
<script {{ opendxp_csp.getNonceHtmlAttribute()|raw }}>
Handling Security Issues
In the case of a security issue/vulnerability in the OpenDXP core framework, we handle them with the following procedure:
-
Reporting Issue: Report issue via Github security advisory mechanism of the corresponding repository, e.g. for here for core framework. Not via public issue tracker (according guidelines also available at public issue tracker)!
-
Resolving Issue:
- Reported issue is forwarded directly forwarded to OpenDXP core team, verified and if confirmed resolved in following steps
- Send an acknowledgement to the reporter with an official statement
- Work on a patch
- If not already available, get a CVE identifier
- Publish patch and/or new release of OpenDXP
- Publish security announcement with at least affected versions, possible exploits and how to patch/upgrade
Project specific Level (provided by Integration Partner)
Following Coding Standards & Best Practices
Same as for the core development, we recommend applying all the coding standards and best practises for solution development too.
Dependency Management
Same as for the core development, we also recommend security checks for all the additional solution dependencies. Also for solutions, all Symfony tools, like the Symfony Security Checker can be utilized.
Project Specific Penetration Testing
Project specific penetration testing should uncover possible security issues in solution implementation. This testing should be done on staging systems, without additional security layers such as WAF (Web Application Firewall) or IPS (Intrusion Protection Systems) and should cover all OWASP Top 10 risks.
Best results are expected when this testing is done by a third-party partner.
WAF & IPS on production systems
Web Application Firewalls and Intrusion Protection Systems are systems that sit in front of the application, analyse all traffic and try to filter malicious activities.
As standard php application, OpenDXP supports all industry standard products such as ModSecurity, WAF safeguards of Cloud Flare and others. Which to use is depending on the actual IT infrastructure. For OpenDXP backend usage, some additional rules might be necessary.
WAF and IPS on production systems should be the last safety net in the multi-layer security concept.