diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt
index 3f0ff8287e27dbcaf915fabd6913466723aa54a8..87eebe277af1deca4a8a05eae6d8a38728098fb8 100644
--- a/profiles/wcm_base/CHANGELOG.txt
+++ b/profiles/wcm_base/CHANGELOG.txt
@@ -1,3 +1,7 @@
+WCM Base 7.x-1.13, 2019-03-28
+-----------------------------
+- WCM Base: Updated Panopoly to 1.65 per SA-CONTRIB-2019-042.
+
 WCM Base 7.x-1.13-rc3, 2019-03-26
 ---------------------------------
 - WCM Base:
diff --git a/profiles/wcm_base/modules/contrib/module_filter/js/module_filter_tab.js b/profiles/wcm_base/modules/contrib/module_filter/js/module_filter_tab.js
index 967eca60364ce2b9e91e5261b0ddd26bd6b0fe5c..c62b9ef64ea81377c1ae20c7582c4691237d1876 100644
--- a/profiles/wcm_base/modules/contrib/module_filter/js/module_filter_tab.js
+++ b/profiles/wcm_base/modules/contrib/module_filter/js/module_filter_tab.js
@@ -57,7 +57,7 @@ Drupal.behaviors.moduleFilterTabs = {
         // Build tabs from package title rows.
         var tabs = '<ul>';
         for (var i in Drupal.settings.moduleFilter.packageIDs) {
-          var id = Drupal.settings.moduleFilter.packageIDs[i];
+          var id = Drupal.checkPlain(Drupal.settings.moduleFilter.packageIDs[i]);
 
           var name = id;
           var tabClass = 'project-tab';
@@ -85,8 +85,8 @@ Drupal.behaviors.moduleFilterTabs = {
               }
               break;
             default:
-              var $row = $('#' + id + '-package');
-              name = $.trim($row.text());
+              var $row = $('#' + id + '-package', this);
+              name = Drupal.checkPlain($.trim($row.text()));
               $row.remove();
               break;
           }
@@ -233,8 +233,8 @@ Drupal.behaviors.moduleFilterTabs = {
         }
 
         if (Drupal.settings.moduleFilter.useSwitch) {
-          $('td.checkbox div.form-item').hide();
-          $('td.checkbox').each(function(i) {
+          $('td.checkbox div.form-item', table).hide();
+          $('td.checkbox', table).each(function(i) {
             var $cell = $(this);
             var $checkbox = $(':checkbox', $cell);
             var $switch = $('.toggle-enable', $cell);
@@ -517,7 +517,7 @@ Drupal.ModuleFilter.updateVisualAid = function(type, $row) {
   }
 
   var tab = Drupal.ModuleFilter.tabs[id];
-  var name = $('td:nth(1) strong', $row).text();
+  var name = Drupal.checkPlain($('td:nth(1) strong', $row).text());
   switch (type) {
     case 'enable':
       if (Drupal.ModuleFilter.disabling[id + name] != undefined) {
diff --git a/profiles/wcm_base/modules/contrib/module_filter/module_filter.info b/profiles/wcm_base/modules/contrib/module_filter/module_filter.info
index a219eebacf0d01684f1b125ee0f6b7281c475618..e21267d632a0a6cc8f67cd252f4dd580edebdfbf 100644
--- a/profiles/wcm_base/modules/contrib/module_filter/module_filter.info
+++ b/profiles/wcm_base/modules/contrib/module_filter/module_filter.info
@@ -16,9 +16,8 @@ files[] = js/module_filter_tab.js
 
 configure = admin/config/user-interface/modulefilter
 
-; Information added by Drupal.org packaging script on 2017-06-09
-version = "7.x-2.1"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-2.2"
 core = "7.x"
 project = "module_filter"
-datestamp = "1497029349"
-
+datestamp = "1553698385"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
index 1c36dd42e8ebfb544159c421e3f29008ad4fef56..844486e68d703cd95afe4cf1efb042654b6fad55 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- Security update, module_filter-7.x-2.2.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
index 4a96165be0cfc88b3e05353d2216b8fdad72d5a9..635cb0a4d42157f7eefa0d8d8b6e6ea9e829eb55 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
@@ -37,8 +37,8 @@ features[page_manager_pages][] = panopoly_admin_layout_library
 features[page_manager_pages][] = panopoly_admin_page_library
 features[page_manager_pages][] = panopoly_admin_pane_library
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_admin"
-datestamp = "1553118926"
+datestamp = "1553720301"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.make b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.make
index 17bce3d3c48927f4d31770ff2108f68d4244ab21..85bbde6fa1508054d8747b94a029b2f24999f297 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.make
+++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.make
@@ -8,7 +8,7 @@ core = 7.x
 projects[backports][version] = 1.0-alpha1
 projects[backports][subdir] = contrib
 
-projects[module_filter][version] = 2.1
+projects[module_filter][version] = 2.2
 projects[module_filter][subdir] = contrib
 
 projects[simplified_menu_admin][version] = 1.0
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
index 1b03468e58e2fa5d9b9b4e0cd74ddb7e4af851be..e9fd1bb5efe849c34f03ad953d1004b4eef80284 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
index 967b656caadff79cd1b8e58b1c8e2614b07b78fc..d6cb0135eb5ba63f4f9ee36fd1c849fd7d2163e5 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
@@ -82,8 +82,8 @@ features_exclude[variable][panelizer_taxonomy_term:panopoly_categories_allowed_t
 features_exclude[variable][panelizer_defaults_taxonomy_term_panopoly_categories] = panelizer_defaults_taxonomy_term_panopoly_categories
 features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_core"
-datestamp = "1553118941"
+datestamp = "1553720324"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
index d8e436b58b927e848d8cd5e6248e9f36e922ed95..6ac05615e268d80a96a2ac0889d2d3e84a527435 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
index cd134f8d1bea7a036795dd9c0bd9838594868ca8..7c5265250af4f6bb1f162605c5083f3e3f938e52 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
@@ -15,8 +15,8 @@ stylesheets[all][] = css/panopoly-modal.css
 features[features_api][] = api:2
 files[] = plugins/views/panopoly_magic_plugin_display_panel_pane.inc
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_magic"
-datestamp = "1553118981"
+datestamp = "1553720392"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
index 63808b99c263518d6f1206551b8347adcb19208d..d1aa6948c16ffe322a72ab66fc44d1d1b3d4e776 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
index d50ef72aa6a3d3c48f2b988f0242ffceadd6b53c..5e3260931bb12734391edc1df23530021d3596d6 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
@@ -81,8 +81,8 @@ features_exclude[variable][pathauto_node_panopoly_landing_page_pattern] = pathau
 features_exclude[variable][pathauto_node_panopoly_page_pattern] = pathauto_node_panopoly_page_pattern
 features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_pages"
-datestamp = "1553118991"
+datestamp = "1553720414"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
index 117d49750800625d597db51156276a3fb07ba0c1..a82fa44e9ed56804a98e2bcc89de4e76655bbc6a 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
index 2d26874d890dec50ea87412cccd62e6f4a4c256a..26df4dab9dfefd64a351114b1bc0806f9eadaf5f 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
@@ -54,8 +54,8 @@ features[variable][] = search_cron_limit
 features[views_view][] = panopoly_database_search
 features[views_view][] = panopoly_search
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_search"
-datestamp = "1553119001"
+datestamp = "1553720428"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
index 7f9a8c1940045cdcbad6b522c7c59bdcbe20764f..50f6f5ad1de4c45ef6d077871508ceda85c15ce8 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
index c89a0587ad9170e4711f955c598d3fbbfe9267ab..516a1bae7c93e02994b3f09717b5b537b552f34c 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
@@ -99,8 +99,8 @@ features_exclude[dependencies][panopoly_pages] = panopoly_pages
 features_exclude[dependencies][panelizer] = panelizer
 hidden = 1
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_test"
-datestamp = "1553119014"
+datestamp = "1553720457"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
index fb26c6cad9d11372fe1f93eb2b56cee9c9f09918..58d6a94018f605563ead4577acc6eed9b4f4b7d3 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
index c3c42b8d750b692f51d1a5087db2aa77e2ac838a..b0a4423d7c24080cef73611b60083a5554a7d632 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
@@ -11,8 +11,8 @@ stylesheets[all][] = css/panopoly-accordian.css
 stylesheets[all][] = css/panopoly-layouts.css
 features[features_api][] = api:2
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_theme"
-datestamp = "1553119026"
+datestamp = "1553720475"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
index c5121e55a1f15e9a682424bfac955b39298f0812..476d501720141f4bb324f709ba04d78acfc94c1d 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.65, 2019-03-27
+-------------------
+- No changes since last release.
+
 7.x-1.64, 2019-03-20
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
index f5388d439f78fec350a8ace5281cb84e4afb88d6..aac6be156e7dd78dec09a6c4bc2a0cf60f228b20 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
@@ -125,8 +125,8 @@ features[linkit_profiles][] = content_fields
 features[views_view][] = panopoly_widgets_general_content
 features_exclude[dependencies][linkit] = linkit
 
-; Information added by Drupal.org packaging script on 2019-03-20
-version = "7.x-1.64"
+; Information added by Drupal.org packaging script on 2019-03-27
+version = "7.x-1.65"
 core = "7.x"
 project = "panopoly_widgets"
-datestamp = "1553119054"
+datestamp = "1553720519"
diff --git a/profiles/wcm_base/wcm_base.make b/profiles/wcm_base/wcm_base.make
index 472306327458db16f45c5280c1ba69e6e4056ee8..5f4a8bf8f18b5bda829b13657fde96bebe4bc383 100644
--- a/profiles/wcm_base/wcm_base.make
+++ b/profiles/wcm_base/wcm_base.make
@@ -503,31 +503,31 @@ libraries[ocio_modernizr][download][branch] = 7.x-1.x
 
 ; The Panopoly Foundation
 
-projects[panopoly_core][version] = 1.64
+projects[panopoly_core][version] = 1.65
 projects[panopoly_core][subdir] = panopoly
 
-projects[panopoly_theme][version] = 1.64
+projects[panopoly_theme][version] = 1.65
 projects[panopoly_theme][subdir] = panopoly
 
-projects[panopoly_magic][version] = 1.64
+projects[panopoly_magic][version] = 1.65
 projects[panopoly_magic][subdir] = panopoly
 
-projects[panopoly_widgets][version] = 1.64
+projects[panopoly_widgets][version] = 1.65
 projects[panopoly_widgets][subdir] = panopoly
 
-projects[panopoly_admin][version] = 1.64
+projects[panopoly_admin][version] = 1.65
 projects[panopoly_admin][subdir] = panopoly
 
 
 ; The Panopoly Toolset
 
-projects[panopoly_pages][version] = 1.64
+projects[panopoly_pages][version] = 1.65
 projects[panopoly_pages][subdir] = panopoly
 
-projects[panopoly_search][version] = 1.64
+projects[panopoly_search][version] = 1.65
 projects[panopoly_search][subdir] = panopoly
 
 ; For running the automated tests.
 
-projects[panopoly_test][version] = 1.64
+projects[panopoly_test][version] = 1.65
 projects[panopoly_test][subdir] = panopoly