Cloudflare - Version 3.3.1

Version Description

  • 2017-6-29 =

Fixed

  • Potential bug with using by unchecked $_GET.
Download this release

Release Info

Developer furkan811
Plugin Icon 128x128 Cloudflare
Version 3.3.1
Comparing to
See all releases

Code changes from version 3.3.0 to 3.3.1

assets/analytics-welcome.svg CHANGED
File without changes
assets/details-arrows.png CHANGED
File without changes
assets/icon-bolt.svg CHANGED
File without changes
assets/icon-lock.svg CHANGED
File without changes
assets/icon-pin.svg CHANGED
File without changes
assets/icon-shield.svg CHANGED
File without changes
assets/icons-seee324dde5.png CHANGED
File without changes
assets/icons_2x-s6333fe7591.png CHANGED
File without changes
assets/layers-2x.png CHANGED
File without changes
assets/layers.png CHANGED
File without changes
assets/logo-reverse.svg CHANGED
File without changes
assets/modal-two-factor-auth.png CHANGED
File without changes
assets/modal-two-factor-auth_2x.png CHANGED
File without changes
assets/overview-welcome-yjs.svg CHANGED
File without changes
assets/overview-welcome.svg CHANGED
File without changes
assets/plan-changed-success.svg CHANGED
File without changes
assets/request-submitted-success.svg CHANGED
File without changes
assets/select2-cf.png CHANGED
File without changes
assets/select2x2-cf.png CHANGED
File without changes
assets/spinner.gif CHANGED
File without changes
assets/vertical-range.png CHANGED
File without changes
assets/yjs-logo.svg CHANGED
File without changes
cloudflare.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cloudflare
4
  Plugin URI: https://blog.cloudflare.com/new-wordpress-plugin/
5
  Description: Cloudflare speeds up and protects your WordPress site.
6
- Version: 3.3.0
7
  Author: John Wineman, Furkan Yilmaz, Junade Ali (Cloudflare Team)
8
  License: BSD-3-Clause
9
  */
3
  Plugin Name: Cloudflare
4
  Plugin URI: https://blog.cloudflare.com/new-wordpress-plugin/
5
  Description: Cloudflare speeds up and protects your WordPress site.
6
+ Version: 3.3.1
7
  Author: John Wineman, Furkan Yilmaz, Junade Ali (Cloudflare Team)
8
  License: BSD-3-Clause
9
  */
composer.json CHANGED
@@ -30,5 +30,5 @@
30
  "_comment": [
31
  "php-compatibility-install comes from https://github.com/wimg/PHPCompatibility/issues/102#issuecomment-255778195"
32
  ],
33
- "version": "3.3.0"
34
  }
30
  "_comment": [
31
  "php-compatibility-install comes from https://github.com/wimg/PHPCompatibility/issues/102#issuecomment-255778195"
32
  ],
33
+ "version": "3.3.1"
34
  }
config.js CHANGED
@@ -25,5 +25,5 @@
25
  },
26
  "locale": "en",
27
  "integrationName": "wordpress",
28
- "version": "3.3.0"
29
  }
25
  },
26
  "locale": "en",
27
  "integrationName": "wordpress",
28
+ "version": "3.3.1"
29
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: jwineman, furkan811, icyapril
3
  Tags: cloudflare, seo, ssl, ddos, speed, security, cdn, performance, free
4
  Requires at least: 3.4
5
  Tested up to: 4.8
6
- Stable tag: 3.3.0
7
  License: BSD-3-Clause
8
 
9
  All of Cloudflare’s performance and security benefits in a simple one-click install of recommended settings specifically developed for WordPress.
@@ -83,6 +83,12 @@ Yes, Cloudflare works with, and helps speed up your site even more, if you have
83
 
84
  == Changelog ==
85
 
 
 
 
 
 
 
86
  = 3.3.0 - 2017-6-29 =
87
 
88
  *Added*
3
  Tags: cloudflare, seo, ssl, ddos, speed, security, cdn, performance, free
4
  Requires at least: 3.4
5
  Tested up to: 4.8
6
+ Stable tag: 3.3.1
7
  License: BSD-3-Clause
8
 
9
  All of Cloudflare’s performance and security benefits in a simple one-click install of recommended settings specifically developed for WordPress.
83
 
84
  == Changelog ==
85
 
86
+ = 3.3.1 - 2017-6-29 =
87
+
88
+ *Fixed*
89
+
90
+ * Potential bug with using by unchecked $_GET.
91
+
92
  = 3.3.0 - 2017-6-29 =
93
 
94
  *Added*
src/WordPress/Hooks.php CHANGED
@@ -261,7 +261,7 @@ class Hooks
261
  */
262
  public function getCloudflareRequestJSON()
263
  {
264
- if ($_GET['action'] === self::WP_AJAX_ACTION) {
265
  $GLOBALS[self::CLOUDFLARE_JSON] = file_get_contents('php://input');
266
  }
267
  }
261
  */
262
  public function getCloudflareRequestJSON()
263
  {
264
+ if (isset($_GET['action']) && $_GET['action'] === self::WP_AJAX_ACTION) {
265
  $GLOBALS[self::CLOUDFLARE_JSON] = file_get_contents('php://input');
266
  }
267
  }