Files
nextcloud-docs/developer_manual/security.rst
Bernhard Posselt c3f9fa711a added security page
2012-10-29 13:02:58 +01:00

18 lines
329 B
ReStructuredText

Security
========
Blacklisted PHP functionality
-----------------------------
**echo, print(), <?=**
Use $this->p in templates instead
**error_log**
Use throw new Exception("Description") instead
**==**
Use === instead
**!=**
Use !== instead
**rand(), srand(), mt_rand()**
Use openssl_random_pseudo_bytes() instead
TBD