WP Live Chat Support - Version 6.2.04

Version Description

It is highly recommended that you upgrade to WP Live Chat Support version 6.0.04 for security reasons.

Download this release

Release Info

Developer WP-LiveChat
Plugin Icon 128x128 WP Live Chat Support
Version 6.2.04
Comparing to
See all releases

Code changes from version 6.2.03 to 6.2.04

functions.php CHANGED
@@ -1223,10 +1223,10 @@ function wplc_store_offline_message($name, $email, $message){
1223
 
1224
  $ins_array = array(
1225
  'timestamp' => current_time('mysql'),
1226
- 'name' => $name,
1227
- 'email' => $email,
1228
- 'message' => $message,
1229
- 'ip' => $offline_ip_address,
1230
  'user_agent' => sanitize_text_field($_SERVER['HTTP_USER_AGENT'])
1231
  );
1232
 
@@ -1234,7 +1234,7 @@ function wplc_store_offline_message($name, $email, $message){
1234
  return;
1235
  }
1236
 
1237
-
1238
 
1239
  function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
1240
 
1223
 
1224
  $ins_array = array(
1225
  'timestamp' => current_time('mysql'),
1226
+ 'name' => sanitize_text_field($name),
1227
+ 'email' => sanitize_email($email),
1228
+ 'message' => sanitize_text_field($message),
1229
+ 'ip' => sanitize_text_field($offline_ip_address),
1230
  'user_agent' => sanitize_text_field($_SERVER['HTTP_USER_AGENT'])
1231
  );
1232
 
1234
  return;
1235
  }
1236
 
1237
+
1238
 
1239
  function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
1240
 
readme.txt CHANGED
@@ -198,18 +198,21 @@ If the live chat box still does not appear on your website, please go through th
198
 
199
  == Upgrade Notice ==
200
 
 
 
 
201
  = 6.2.02 =
202
  It is highly recommended that you upgrade to WP Live Chat Support version 6.0.02 for security reasons.
203
 
204
  = 4.4.1 =
205
  It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0 for security reasons.
206
 
207
- = 4.1.4 =
208
- It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
209
-
210
  == Changelog ==
211
 
212
- = 6.2.03 - 2016-07-19 - Low priority =
 
 
 
213
  * Italian translation updated - thank you Angelo Giammarresi
214
  * Fixed Danish translation bug
215
  * Minor UI fixes
198
 
199
  == Upgrade Notice ==
200
 
201
+ = 6.2.04 =
202
+ It is highly recommended that you upgrade to WP Live Chat Support version 6.0.04 for security reasons.
203
+
204
  = 6.2.02 =
205
  It is highly recommended that you upgrade to WP Live Chat Support version 6.0.02 for security reasons.
206
 
207
  = 4.4.1 =
208
  It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0 for security reasons.
209
 
 
 
 
210
  == Changelog ==
211
 
212
+ = 6.2.04 - 2016-08-01 - High priority =
213
+ * Security patches in the offline message storing function (https://www.securify.nl/advisory/SFY20190709/stored_cross_site_scripting_vulnerability_in_wp_live_chat_support_wordpress_plugin.html)
214
+
215
+ 6.2.03 - 2016-07-19 - Low priority =
216
  * Italian translation updated - thank you Angelo Giammarresi
217
  * Fixed Danish translation bug
218
  * Minor UI fixes
screenshot-1.jpg DELETED
Binary file
screenshot-2.jpg DELETED
Binary file
screenshot-3.jpg DELETED
Binary file
screenshot-4.jpg DELETED
Binary file
screenshot-5.jpg DELETED
Binary file
wp-live-chat-support.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Live Chat Support
4
  Plugin URI: http://www.wp-livechat.com
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
6
- Version: 6.2.03
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
@@ -11,6 +11,9 @@
11
  */
12
 
13
  /*
 
 
 
14
  * 6.2.03 - 2016-07-19 - Low priority
15
  * Italian translation updated - thank you Angelo Giammarresi
16
  * Fixed Danish translation bug
@@ -390,7 +393,7 @@ global $wplc_tblname_offline_msgs;
390
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
391
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
392
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
393
- $wplc_version = "6.2.03";
394
 
395
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
396
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
3
  Plugin Name: WP Live Chat Support
4
  Plugin URI: http://www.wp-livechat.com
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
6
+ Version: 6.2.04
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
11
  */
12
 
13
  /*
14
+ * 6.2.04 - 2016-08-01 - High priority
15
+ * Security patches in the offline message storing function (https://www.securify.nl/advisory/SFY20190709/stored_cross_site_scripting_vulnerability_in_wp_live_chat_support_wordpress_plugin.html)
16
+ *
17
  * 6.2.03 - 2016-07-19 - Low priority
18
  * Italian translation updated - thank you Angelo Giammarresi
19
  * Fixed Danish translation bug
393
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
394
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
395
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
396
+ $wplc_version = "6.2.04";
397
 
398
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
399
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");