A Pen by André Ruffert on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\System; | |
| use Spatie\ArrayToXml\ArrayToXml; | |
| trait GeneratesXml | |
| { | |
| /** | |
| * The XML template. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #### Enable Apache Proxy related modules | |
| sudo a2enmod proxy | |
| sudo a2enmod proxy_http | |
| sudo a2enmod proxy_ajp | |
| sudo a2enmod rewrite | |
| sudo a2enmod deflate | |
| sudo a2enmod headers | |
| sudo a2enmod proxy_balancer | |
| sudo a2enmod proxy_connect |
Hello software developers,
Please check your code to ensure you're not making one of the following mistakes related to cryptography.
- Writing your own home-grown cryptography primitives (For example: Mifare Classic)
- Exception: For the sake of learning, but don't deploy it in production.
- Using a fast hash function (e.g. MD5, SHA256) for storing passwords. Use bcrypt instead.
- Not using a cryptographically secure random number generator