L'importanza di un backup esterno

Avrete sicuramente letto del ransomware che sta attaccando i server Linux: http://thehackernews.com/2015/11/linux-ransomware.html Questo sistema sfrutta falle del software installato sul server Web e cifra i file e il contenuto del database con una doppia chiave. Nel sito viene poi inserito un […]

Continue reading »

Attivare SSL per Mysql

https://dev.mysql.com/doc/refman/5.0/en/creating-ssl-files-using-openssl.html shell> openssl genrsa 2048 > ca-key.pem shell> openssl req -new -x509 -nodes -days 3600 -key ca-key.pem -out ca.pem # Create server certificate, remove passphrase, and sign it # server-cert.pem = public key, server-key.pem = private key shell> openssl req […]

Continue reading »
1 2 3 4