From 3decd9bba5c034074f8c3a718395a822be7eb17d Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Tue, 10 Nov 2015 15:31:42 +0530 Subject: [PATCH 1/4] redis security fix --- install | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install b/install index 1def9d51..64f25a91 100644 --- a/install +++ b/install @@ -462,6 +462,16 @@ function ee_update_latest() fi fi + #Fix Redis-server security issue + #http://redis.io/topics/security + if [ -f /etc/redis/redis.conf ]; then + grep -0 -v "#" /etc/redis/redis.conf | grep 'bind' &>> /dev/null + if [ $? -ne 0 ]; then + sed -i '$ a bind 127.0.0.1' /etc/redis/redis.conf &>> /dev/null + service redis-server restart &>> /dev/null + fi + fi + # Fix for 3.3.2 renamed nginx.conf nginx -V 2>&1 &>>/dev/null if [[ $? -eq 0 ]]; then From 9692963e4519388005a8552590ee5a9c5bf269e8 Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Tue, 10 Nov 2015 15:33:47 +0530 Subject: [PATCH 2/4] Update Version --- ee/core/variables.py | 2 +- install | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/core/variables.py b/ee/core/variables.py index 9fc00085..5d4a462a 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -12,7 +12,7 @@ class EEVariables(): """Intialization of core variables""" # EasyEngine version - ee_version = "3.3.12" + ee_version = "3.3.13" # EasyEngine packages versions diff --git a/install b/install index 64f25a91..c4919713 100644 --- a/install +++ b/install @@ -48,7 +48,7 @@ fi # Define variables for later use ee_branch=$1 readonly ee_version_old="2.2.3" -readonly ee_version_new="3.3.12" +readonly ee_version_new="3.3.13" readonly ee_log_dir=/var/log/ee/ readonly ee_install_log=/var/log/ee/install.log readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}') diff --git a/setup.py b/setup.py index ab5ac2cd..f06b35b5 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ except Exception as e: os.system("git config --global user.email {0}".format(ee_email)) setup(name='ee', - version='3.3.12', + version='3.3.13', description=long_description, long_description=long_description, classifiers=[], From 091f9529d34aa20c73f851874f83f08684b84bf8 Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Tue, 10 Nov 2015 17:46:58 +0530 Subject: [PATCH 3/4] update changelog --- CHANGELOG.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 018ce4d3..1c32306e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +v 3.3.13 - Nov 10, 2015 +- Security Fix in redis.conf +- Update wp-cli version + v 3.3.12 - Nov 3, 2015 - Fix #637 - Updated wp-cli version From 16a61779a0b9dfe212d8128c9f92062d7030f01c Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Tue, 10 Nov 2015 17:47:43 +0530 Subject: [PATCH 4/4] update wp-cli version --- ee/core/variables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/core/variables.py b/ee/core/variables.py index 5d4a462a..3a7d2a8e 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -16,7 +16,7 @@ class EEVariables(): # EasyEngine packages versions - ee_wp_cli = "0.20.3" + ee_wp_cli = "0.21.0" ee_adminer = "4.2.1" ee_roundcube = "1.1.3" ee_vimbadmin = "3.0.12"