From 0c73518911bf641f26890469c34ab4f72ab227d4 Mon Sep 17 00:00:00 2001 From: hh-hunter <91593280+hh-hunter@users.noreply.github.com> Date: Sat, 8 Feb 2025 10:38:33 +0800 Subject: [PATCH 1/4] add CVE-2021-39316 in the security-testbeds environment --- wordpress/cve-2021-39316/README.md | 13 + wordpress/cve-2021-39316/docker-compose.yml | 31 ++ wordpress/cve-2021-39316/init.sql | 438 ++++++++++++++++++++ 3 files changed, 482 insertions(+) create mode 100644 wordpress/cve-2021-39316/README.md create mode 100644 wordpress/cve-2021-39316/docker-compose.yml create mode 100644 wordpress/cve-2021-39316/init.sql diff --git a/wordpress/cve-2021-39316/README.md b/wordpress/cve-2021-39316/README.md new file mode 100644 index 00000000..0810ce3d --- /dev/null +++ b/wordpress/cve-2021-39316/README.md @@ -0,0 +1,13 @@ +# WordPress Plugin DZS Zoomsounds 6.45 - Arbitrary File Read (Unauthenticated CVE-2021-39316) + +The vulnerability allows a remote attacker to perform directory traversal attacks. +The vulnerability exists due to input validation error when processing directory traversal sequences in the "link" parameter in the "dzsap_download" action. A remote attacker can send a specially crafted HTTP request and read arbitrary files on the system. + +# Docker-compose + +You can deploy the vulnerable version of WordPress Plugin DZS Zoomsounds by running in docker-compose: +``` +docker-compose -f docker-compose.yml up +``` +It takes several minutes to wait for the service to be accessed normally, and the exposed web service port is [8080]. + diff --git a/wordpress/cve-2021-39316/docker-compose.yml b/wordpress/cve-2021-39316/docker-compose.yml new file mode 100644 index 00000000..3ee83f05 --- /dev/null +++ b/wordpress/cve-2021-39316/docker-compose.yml @@ -0,0 +1,31 @@ +version: '3.1' + +services: + + wordpress: + image: wordpress + restart: always + ports: + - 8080:80 + environment: + WORDPRESS_DB_HOST: db + WORDPRESS_DB_USER: exampleuser + WORDPRESS_DB_PASSWORD: examplepass + WORDPRESS_DB_NAME: exampledb + volumes: + - wordpress:/var/www/html + + db: + image: mysql:5.7 + restart: always + environment: + MYSQL_DATABASE: exampledb + MYSQL_USER: exampleuser + MYSQL_PASSWORD: examplepass + MYSQL_RANDOM_ROOT_PASSWORD: '1' + volumes: + - db:/var/lib/mysql + +volumes: + wordpress: + db: \ No newline at end of file diff --git a/wordpress/cve-2021-39316/init.sql b/wordpress/cve-2021-39316/init.sql new file mode 100644 index 00000000..a5593dd3 --- /dev/null +++ b/wordpress/cve-2021-39316/init.sql @@ -0,0 +1,438 @@ +-- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) +-- +-- Host: localhost Database: exampledb +-- ------------------------------------------------------ +-- Server version 5.7.44 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `wp_commentmeta` +-- + +DROP TABLE IF EXISTS `wp_commentmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_commentmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `comment_id` (`comment_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_commentmeta` +-- + +LOCK TABLES `wp_commentmeta` WRITE; +/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_comments` +-- + +DROP TABLE IF EXISTS `wp_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_comments` ( + `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', + `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `comment_karma` int(11) NOT NULL DEFAULT '0', + `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', + `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', + `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`comment_ID`), + KEY `comment_post_ID` (`comment_post_ID`), + KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), + KEY `comment_date_gmt` (`comment_date_gmt`), + KEY `comment_parent` (`comment_parent`), + KEY `comment_author_email` (`comment_author_email`(10)) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_comments` +-- + +LOCK TABLES `wp_comments` WRITE; +/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; +INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2025-02-08 02:09:02','2025-02-08 02:09:02','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','',0,0); +/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_dzsap_activity` +-- + +DROP TABLE IF EXISTS `wp_dzsap_activity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_dzsap_activity` ( + `id` mediumint(9) NOT NULL AUTO_INCREMENT, + `type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, + `country` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `id_user` int(10) NOT NULL, + `val` int(255) NOT NULL, + `ip` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, + `id_video` int(10) NOT NULL, + `date` datetime NOT NULL, + UNIQUE KEY `id` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_dzsap_activity` +-- + +LOCK TABLES `wp_dzsap_activity` WRITE; +/*!40000 ALTER TABLE `wp_dzsap_activity` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_dzsap_activity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_links` +-- + +DROP TABLE IF EXISTS `wp_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_links` ( + `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', + `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', + `link_rating` int(11) NOT NULL DEFAULT '0', + `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + PRIMARY KEY (`link_id`), + KEY `link_visible` (`link_visible`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_links` +-- + +LOCK TABLES `wp_links` WRITE; +/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_options` +-- + +DROP TABLE IF EXISTS `wp_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_options` ( + `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', + PRIMARY KEY (`option_id`), + UNIQUE KEY `option_name` (`option_name`) +) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_options` +-- + +LOCK TABLES `wp_options` WRITE; +/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; +INSERT INTO `wp_options` VALUES (1,'siteurl','http://192.168.30.6:8080','yes'),(2,'home','http://192.168.30.6:8080','yes'),(3,'blogname','test','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','test@example.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:73:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:29:\"dzs-zoomsounds/zoomsounds.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentysixteen','yes'),(41,'stylesheet','twentysixteen','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','37965','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','37965','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:16:\"edit_dzsap_items\";b:1;s:23:\"edit_others_dzsap_items\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(99,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'cron','a:3:{i:1739023746;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1739067034;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(107,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:58:\"http://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:58:\"http://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:69:\"http://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:70:\"http://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:58:\"http://downloads.wordpress.org/release/wordpress-6.2.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:58:\"http://downloads.wordpress.org/release/wordpress-6.2.6.zip\";s:10:\"no_content\";s:69:\"http://downloads.wordpress.org/release/wordpress-6.2.6-no-content.zip\";s:11:\"new_bundled\";s:70:\"http://downloads.wordpress.org/release/wordpress-6.2.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"6.2.6\";s:7:\"version\";s:5:\"6.2.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1738980568;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}','no'),(110,'_site_transient_timeout_theme_roots','1738982370','no'),(111,'_site_transient_theme_roots','a:3:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(113,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1738980637;s:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:29:\"dzs-zoomsounds/zoomsounds.php\";s:4:\"6.43\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:59:\"http://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.4.5\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:55:\"http://downloads.wordpress.org/plugin/akismet.5.3.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}s:13:\"compatibility\";a:0:{}}}}','no'),(114,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1738980582;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"1.6\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"3.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:58:\"http://downloads.wordpress.org/theme/twentyfifteen.3.9.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"4.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:59:\"http://downloads.wordpress.org/theme/twentyfourteen.4.1.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"3.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:58:\"http://downloads.wordpress.org/theme/twentysixteen.3.4.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(115,'_site_transient_timeout_browser_0845b309c7b9b957afd9ecf775a4c21f','1739585375','no'),(116,'_site_transient_browser_0845b309c7b9b957afd9ecf775a4c21f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"131.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(118,'can_compress_scripts','0','no'),(119,'_transient_timeout_plugin_slugs','1739067045','no'),(120,'_transient_plugin_slugs','a:3:{i:0;s:19:\"akismet/akismet.php\";i:1;s:29:\"dzs-zoomsounds/zoomsounds.php\";i:2;s:9:\"hello.php\";}','no'),(121,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1739023783','no'),(122,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','

RSS Error: WP HTTP Error: cURL error 60: SSL certificate problem: unable to get local issuer certificate

RSS Error: WP HTTP Error: cURL error 60: SSL certificate problem: unable to get local issuer certificate

','no'),(123,'recently_activated','a:0:{}','yes'),(125,'widget_dzsap_tags_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'dzsap_vpconfigs','a:5:{i:0;a:1:{s:8:\"settings\";a:44:{s:2:\"id\";s:31:\"default-settings-for-zoomsounds\";s:7:\"skin_ap\";s:9:\"skin-wave\";s:28:\"settings_extrahtml_in_player\";s:0:\"\";s:19:\"enable_embed_button\";s:3:\"off\";s:16:\"preview_on_hover\";s:3:\"off\";s:4:\"loop\";s:3:\"off\";s:14:\"preload_method\";s:8:\"metadata\";s:10:\"cue_method\";s:2:\"on\";s:8:\"playfrom\";s:3:\"off\";s:14:\"default_volume\";s:7:\"default\";s:26:\"menu_right_enable_info_btn\";s:3:\"off\";s:28:\"menu_right_enable_multishare\";s:3:\"off\";s:26:\"settings_exclude_from_list\";s:3:\"off\";s:17:\"player_navigation\";s:7:\"default\";s:19:\"footer_btn_playlist\";s:3:\"off\";s:14:\"colorhighlight\";s:0:\"\";s:16:\"color_waveformbg\";s:0:\"\";s:18:\"color_waveformprog\";s:0:\"\";s:23:\"design_animateplaypause\";s:7:\"default\";s:26:\"enable_footer_close_button\";s:3:\"off\";s:16:\"disable_scrubbar\";s:3:\"off\";s:14:\"disable_volume\";s:7:\"default\";s:21:\"skinwave_dynamicwaves\";s:3:\"off\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:38:\"skinwave_wave_mode_canvas_waves_number\";s:0:\"\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:0:\"\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:0:\"\";s:23:\"skinwave_enablespectrum\";s:3:\"off\";s:22:\"skinwave_enablereflect\";s:2:\"on\";s:24:\"skinwave_comments_enable\";s:3:\"off\";s:13:\"skinwave_mode\";s:6:\"normal\";s:30:\"skinwave_wave_mode_canvas_mode\";s:6:\"normal\";s:13:\"button_aspect\";s:18:\"button-aspect-noir\";s:30:\"scrubbar_tweak_overflow_hidden\";s:3:\"off\";s:20:\"extra_classes_player\";s:0:\"\";s:24:\"restyle_player_under_400\";s:0:\"\";s:23:\"restyle_player_over_400\";s:0:\"\";s:31:\"settings_extrahtml_after_artist\";s:0:\"\";s:48:\"js_settings_extrahtml_in_float_right_from_config\";s:0:\"\";s:52:\"js_settings_extrahtml_in_bottom_controls_from_config\";s:0:\"\";s:46:\"settings_extrahtml_after_playpause_from_config\";s:0:\"\";s:49:\"settings_extrahtml_after_con_controls_from_config\";s:0:\"\";s:16:\"config_extra_css\";s:0:\"\";}}i:1;a:2:{s:8:\"settings\";a:43:{s:2:\"id\";s:13:\"footer-player\";s:7:\"skin_ap\";s:9:\"skin-wave\";s:28:\"settings_extrahtml_in_player\";s:0:\"\";s:19:\"enable_embed_button\";s:3:\"off\";s:16:\"preview_on_hover\";s:3:\"off\";s:14:\"colorhighlight\";s:6:\"111111\";s:4:\"loop\";s:3:\"off\";s:14:\"preload_method\";s:8:\"metadata\";s:10:\"cue_method\";s:2:\"on\";s:8:\"playfrom\";s:3:\"off\";s:14:\"default_volume\";s:7:\"default\";s:26:\"menu_right_enable_info_btn\";s:3:\"off\";s:28:\"menu_right_enable_multishare\";s:3:\"off\";s:26:\"settings_exclude_from_list\";s:3:\"off\";s:17:\"player_navigation\";s:7:\"default\";s:19:\"footer_btn_playlist\";s:3:\"off\";s:23:\"design_animateplaypause\";s:7:\"default\";s:26:\"enable_footer_close_button\";s:3:\"off\";s:16:\"disable_scrubbar\";s:3:\"off\";s:14:\"disable_volume\";s:7:\"default\";s:16:\"color_waveformbg\";s:0:\"\";s:18:\"color_waveformprog\";s:0:\"\";s:21:\"skinwave_dynamicwaves\";s:3:\"off\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:0:\"\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:0:\"\";s:23:\"skinwave_enablespectrum\";s:3:\"off\";s:22:\"skinwave_enablereflect\";s:2:\"on\";s:24:\"skinwave_comments_enable\";s:3:\"off\";s:13:\"skinwave_mode\";s:5:\"small\";s:30:\"skinwave_wave_mode_canvas_mode\";s:6:\"normal\";s:13:\"button_aspect\";s:45:\"button-aspect-noir button-aspect-noir--filled\";s:30:\"scrubbar_tweak_overflow_hidden\";s:3:\"off\";s:20:\"extra_classes_player\";s:0:\"\";s:24:\"restyle_player_under_400\";s:0:\"\";s:23:\"restyle_player_over_400\";s:0:\"\";s:31:\"settings_extrahtml_after_artist\";s:0:\"\";s:48:\"js_settings_extrahtml_in_float_right_from_config\";s:0:\"\";s:52:\"js_settings_extrahtml_in_bottom_controls_from_config\";s:0:\"\";s:46:\"settings_extrahtml_after_playpause_from_config\";s:0:\"\";s:49:\"settings_extrahtml_after_con_controls_from_config\";s:0:\"\";s:16:\"config_extra_css\";s:0:\"\";}s:0:\"\";a:1:{s:0:\"\";s:0:\"\";}}i:2;a:2:{s:8:\"settings\";a:43:{s:2:\"id\";s:17:\"sample--skin-aria\";s:7:\"skin_ap\";s:9:\"skin-aria\";s:28:\"settings_extrahtml_in_player\";s:0:\"\";s:19:\"enable_embed_button\";s:3:\"off\";s:16:\"preview_on_hover\";s:3:\"off\";s:14:\"colorhighlight\";s:6:\"111111\";s:4:\"loop\";s:3:\"off\";s:14:\"preload_method\";s:8:\"metadata\";s:10:\"cue_method\";s:2:\"on\";s:8:\"playfrom\";s:3:\"off\";s:14:\"default_volume\";s:7:\"default\";s:26:\"menu_right_enable_info_btn\";s:3:\"off\";s:28:\"menu_right_enable_multishare\";s:3:\"off\";s:26:\"settings_exclude_from_list\";s:3:\"off\";s:17:\"player_navigation\";s:7:\"default\";s:19:\"footer_btn_playlist\";s:3:\"off\";s:23:\"design_animateplaypause\";s:7:\"default\";s:26:\"enable_footer_close_button\";s:3:\"off\";s:16:\"disable_scrubbar\";s:3:\"off\";s:14:\"disable_volume\";s:7:\"default\";s:16:\"color_waveformbg\";s:0:\"\";s:18:\"color_waveformprog\";s:0:\"\";s:21:\"skinwave_dynamicwaves\";s:3:\"off\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:0:\"\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:0:\"\";s:23:\"skinwave_enablespectrum\";s:3:\"off\";s:22:\"skinwave_enablereflect\";s:2:\"on\";s:24:\"skinwave_comments_enable\";s:3:\"off\";s:13:\"skinwave_mode\";s:6:\"normal\";s:30:\"skinwave_wave_mode_canvas_mode\";s:6:\"normal\";s:13:\"button_aspect\";s:7:\"default\";s:30:\"scrubbar_tweak_overflow_hidden\";s:3:\"off\";s:20:\"extra_classes_player\";s:0:\"\";s:24:\"restyle_player_under_400\";s:0:\"\";s:23:\"restyle_player_over_400\";s:0:\"\";s:31:\"settings_extrahtml_after_artist\";s:0:\"\";s:48:\"js_settings_extrahtml_in_float_right_from_config\";s:0:\"\";s:52:\"js_settings_extrahtml_in_bottom_controls_from_config\";s:0:\"\";s:46:\"settings_extrahtml_after_playpause_from_config\";s:0:\"\";s:49:\"settings_extrahtml_after_con_controls_from_config\";s:0:\"\";s:16:\"config_extra_css\";s:0:\"\";}s:0:\"\";a:1:{s:0:\"\";s:0:\"\";}}i:3;a:2:{s:8:\"settings\";a:43:{s:2:\"id\";s:51:\"sample--skin-wave-with-multisharer-button-and-embed\";s:7:\"skin_ap\";s:9:\"skin-wave\";s:28:\"settings_extrahtml_in_player\";s:0:\"\";s:19:\"enable_embed_button\";s:11:\"in_lightbox\";s:16:\"preview_on_hover\";s:3:\"off\";s:14:\"colorhighlight\";s:6:\"53578d\";s:4:\"loop\";s:3:\"off\";s:14:\"preload_method\";s:8:\"metadata\";s:10:\"cue_method\";s:2:\"on\";s:8:\"playfrom\";s:3:\"off\";s:14:\"default_volume\";s:7:\"default\";s:26:\"menu_right_enable_info_btn\";s:3:\"off\";s:28:\"menu_right_enable_multishare\";s:2:\"on\";s:26:\"settings_exclude_from_list\";s:3:\"off\";s:17:\"player_navigation\";s:7:\"default\";s:19:\"footer_btn_playlist\";s:3:\"off\";s:23:\"design_animateplaypause\";s:7:\"default\";s:26:\"enable_footer_close_button\";s:3:\"off\";s:16:\"disable_scrubbar\";s:3:\"off\";s:14:\"disable_volume\";s:7:\"default\";s:16:\"color_waveformbg\";s:6:\"2486d6\";s:18:\"color_waveformprog\";s:6:\"6b6b6b\";s:21:\"skinwave_dynamicwaves\";s:3:\"off\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:0:\"\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:0:\"\";s:23:\"skinwave_enablespectrum\";s:3:\"off\";s:22:\"skinwave_enablereflect\";s:2:\"on\";s:24:\"skinwave_comments_enable\";s:3:\"off\";s:13:\"skinwave_mode\";s:6:\"normal\";s:30:\"skinwave_wave_mode_canvas_mode\";s:6:\"normal\";s:13:\"button_aspect\";s:7:\"default\";s:30:\"scrubbar_tweak_overflow_hidden\";s:3:\"off\";s:20:\"extra_classes_player\";s:0:\"\";s:24:\"restyle_player_under_400\";s:0:\"\";s:23:\"restyle_player_over_400\";s:0:\"\";s:31:\"settings_extrahtml_after_artist\";s:0:\"\";s:48:\"js_settings_extrahtml_in_float_right_from_config\";s:0:\"\";s:52:\"js_settings_extrahtml_in_bottom_controls_from_config\";s:0:\"\";s:46:\"settings_extrahtml_after_playpause_from_config\";s:0:\"\";s:49:\"settings_extrahtml_after_con_controls_from_config\";s:0:\"\";s:16:\"config_extra_css\";s:0:\"\";}s:0:\"\";a:1:{s:0:\"\";s:0:\"\";}}i:4;a:1:{s:8:\"settings\";a:44:{s:2:\"id\";s:32:\"sample--skin-wave--with-comments\";s:7:\"skin_ap\";s:9:\"skin-wave\";s:28:\"settings_extrahtml_in_player\";s:0:\"\";s:19:\"enable_embed_button\";s:3:\"off\";s:16:\"preview_on_hover\";s:3:\"off\";s:4:\"loop\";s:3:\"off\";s:14:\"preload_method\";s:8:\"metadata\";s:10:\"cue_method\";s:2:\"on\";s:8:\"playfrom\";s:3:\"off\";s:14:\"default_volume\";s:7:\"default\";s:26:\"menu_right_enable_info_btn\";s:3:\"off\";s:28:\"menu_right_enable_multishare\";s:3:\"off\";s:26:\"settings_exclude_from_list\";s:3:\"off\";s:17:\"player_navigation\";s:7:\"default\";s:19:\"footer_btn_playlist\";s:3:\"off\";s:14:\"colorhighlight\";s:0:\"\";s:16:\"color_waveformbg\";s:6:\"786464\";s:18:\"color_waveformprog\";s:6:\"d322ae\";s:23:\"design_animateplaypause\";s:7:\"default\";s:26:\"enable_footer_close_button\";s:3:\"off\";s:16:\"disable_scrubbar\";s:3:\"off\";s:14:\"disable_volume\";s:7:\"default\";s:21:\"skinwave_dynamicwaves\";s:3:\"off\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:38:\"skinwave_wave_mode_canvas_waves_number\";s:0:\"\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:0:\"\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:0:\"\";s:23:\"skinwave_enablespectrum\";s:3:\"off\";s:22:\"skinwave_enablereflect\";s:2:\"on\";s:24:\"skinwave_comments_enable\";s:3:\"off\";s:13:\"skinwave_mode\";s:6:\"normal\";s:30:\"skinwave_wave_mode_canvas_mode\";s:6:\"normal\";s:13:\"button_aspect\";s:18:\"button-aspect-noir\";s:30:\"scrubbar_tweak_overflow_hidden\";s:3:\"off\";s:20:\"extra_classes_player\";s:0:\"\";s:24:\"restyle_player_under_400\";s:0:\"\";s:23:\"restyle_player_over_400\";s:0:\"\";s:31:\"settings_extrahtml_after_artist\";s:0:\"\";s:48:\"js_settings_extrahtml_in_float_right_from_config\";s:0:\"\";s:52:\"js_settings_extrahtml_in_bottom_controls_from_config\";s:146:\"[player_button style=\"btn-zoomsounds\" label=\"Premium\" icon=\"fa-download\" link=\"{{downloadlink}}\" extra_classes=\"\" post_id=\"{{replacewithpostid}}\"]\";s:46:\"settings_extrahtml_after_playpause_from_config\";s:0:\"\";s:49:\"settings_extrahtml_after_con_controls_from_config\";s:0:\"\";s:16:\"config_extra_css\";s:0:\"\";}}}','yes'),(127,'dzsap_options','a:131:{s:17:\"embed_prettyphoto\";s:2:\"on\";s:13:\"embed_masonry\";s:2:\"on\";s:14:\"is_safebinding\";s:2:\"on\";s:15:\"use_api_caching\";s:2:\"on\";s:10:\"debug_mode\";s:3:\"off\";s:23:\"try_to_cache_total_time\";s:2:\"on\";s:26:\"dzsap_purchase_code_binded\";s:3:\"off\";s:19:\"dzsap_purchase_code\";s:0:\"\";s:9:\"extra_css\";s:0:\"\";s:15:\"track_downloads\";s:3:\"off\";s:19:\"show_only_published\";s:3:\"off\";s:23:\"analytics_table_created\";s:2:\"on\";s:8:\"extra_js\";s:0:\"\";s:15:\"js_init_timeout\";s:0:\"\";s:36:\"download_link_links_directly_to_file\";s:3:\"off\";s:42:\"force_autoplay_when_coming_from_share_link\";s:3:\"off\";s:26:\"replace_playlist_shortcode\";s:3:\"off\";s:23:\"replace_audio_shortcode\";s:3:\"off\";s:34:\"replace_audio_shortcode_extra_args\";s:0:\"\";s:38:\"replace_audio_shortcode_play_in_footer\";s:3:\"off\";s:22:\"fontawesome_load_local\";s:3:\"off\";s:25:\"replace_powerpress_plugin\";s:3:\"off\";s:28:\"powerpress_read_category_xml\";s:3:\"off\";s:24:\"pcm_data_try_to_generate\";s:2:\"on\";s:27:\"enable_global_footer_player\";s:3:\"off\";s:19:\"exclude_from_search\";s:3:\"off\";s:19:\"player_pause_method\";s:6:\"canvas\";s:18:\"skinwave_wave_mode\";s:6:\"canvas\";s:41:\"skinwave_wave_mode_canvas_reflection_size\";s:4:\"0.25\";s:38:\"skinwave_wave_mode_canvas_waves_number\";s:1:\"3\";s:39:\"skinwave_wave_mode_canvas_waves_padding\";s:1:\"1\";s:35:\"skinwave_wave_mode_canvas_normalize\";s:2:\"on\";s:40:\"allow_download_only_for_registered_users\";s:3:\"off\";s:51:\"allow_download_only_for_registered_users_capability\";s:4:\"read\";s:22:\"admin_close_otheritems\";s:2:\"on\";s:23:\"force_file_get_contents\";s:3:\"off\";s:16:\"dzsap_items_hide\";s:3:\"off\";s:10:\"pcm_notice\";s:3:\"off\";s:15:\"notice_no_media\";s:3:\"off\";s:11:\"wpdb_enable\";s:3:\"off\";s:16:\"color_waveformbg\";s:6:\"111111\";s:18:\"color_waveformprog\";s:6:\"ef6b13\";s:18:\"settings_wavestyle\";s:7:\"reflect\";s:18:\"soundcloud_api_key\";s:0:\"\";s:18:\"script_init_method\";s:15:\"javascript_safe\";s:24:\"wc_single_product_player\";s:3:\"off\";s:34:\"wc_single_product_player_shortcode\";s:0:\"\";s:34:\"dzsaap_buddypress_player_shortcode\";s:0:\"\";s:22:\"wc_loop_product_player\";s:3:\"off\";s:50:\"wc_loop_player_position__overlay__wrapper_selector\";s:0:\"\";s:25:\"wc_product_play_in_footer\";s:3:\"off\";s:15:\"try_to_hide_url\";s:3:\"off\";s:18:\"sample_time_pseudo\";s:0:\"\";s:25:\"wc_single_player_position\";s:3:\"top\";s:23:\"wc_loop_player_position\";s:3:\"top\";s:18:\"play_remember_time\";s:3:\"120\";s:24:\"activate_comments_widget\";s:3:\"off\";s:23:\"settings_trigger_resize\";s:3:\"off\";s:21:\"wavesurfer_pcm_length\";s:3:\"200\";s:28:\"mobile_disable_footer_player\";s:2:\"on\";s:20:\"enable_raw_shortcode\";s:3:\"off\";s:47:\"developer_check_for_bots_and_dont_reveal_source\";s:3:\"off\";s:18:\"enable_auto_backup\";s:3:\"off\";s:18:\"enable_aux_buttons\";s:3:\"off\";s:18:\"aws_enable_support\";s:3:\"off\";s:7:\"aws_key\";s:0:\"\";s:14:\"aws_key_secret\";s:0:\"\";s:10:\"aws_region\";s:0:\"\";s:10:\"aws_bucket\";s:0:\"\";s:21:\"dzsap_meta_post_types\";a:1:{i:0;s:11:\"dzsap_items\";}s:10:\"www_handle\";s:7:\"default\";s:15:\"str_likes_part1\";s:189:\"{{heart_svg}}LikeLiked\";s:9:\"str_views\";s:117:\"
{{get_plays}}
\";s:21:\"str_downloads_counter\";s:136:\"
{{get_downloads}}
\";s:15:\"str_likes_part2\";s:119:\"
{{get_likes}}
\";s:9:\"str_rates\";s:98:\"
{{get_rates}} rates
\";s:28:\"waveformgenerator_multiplier\";s:1:\"1\";s:12:\"always_embed\";s:3:\"off\";s:24:\"single_index_seo_disable\";s:3:\"off\";s:13:\"loop_playlist\";s:3:\"off\";s:32:\"try_to_get_id3_thumb_in_frontend\";s:3:\"off\";s:29:\"failsafe_repair_media_element\";s:3:\"off\";s:30:\"construct_player_list_for_sync\";s:3:\"off\";s:8:\"i18n_buy\";s:3:\"Buy\";s:9:\"i18n_play\";s:4:\"Play\";s:10:\"i18n_title\";s:5:\"Title\";s:18:\"i18n_free_download\";s:13:\"Free Download\";s:25:\"i18n_register_to_download\";s:20:\"Register to download\";s:38:\"register_to_download_opens_in_new_link\";s:3:\"off\";s:16:\"analytics_enable\";s:3:\"off\";s:25:\"analytics_enable_location\";s:3:\"off\";s:27:\"analytics_enable_user_track\";s:3:\"off\";s:22:\"keyboard_show_tooltips\";s:3:\"off\";s:31:\"keyboard_play_trigger_step_back\";s:3:\"off\";s:25:\"keyboard_step_back_amount\";s:1:\"5\";s:18:\"keyboard_step_back\";s:2:\"37\";s:21:\"keyboard_step_forward\";s:2:\"39\";s:19:\"keyboard_pause_play\";s:2:\"32\";s:31:\"keyboard_sync_players_goto_prev\";s:0:\"\";s:31:\"keyboard_sync_players_goto_next\";s:0:\"\";s:19:\"analytics_galleries\";s:0:\"\";s:21:\"admin_nag_disable_all\";s:0:\"\";s:23:\"dzsapp_bp_player_config\";s:32:\"sample--skin-wave--with-comments\";s:24:\"dzsapp_single_show_views\";s:2:\"on\";s:26:\"dzsapp_enable_tab_playlist\";s:2:\"on\";s:24:\"dzsapp_tab_share_content\";s:379:\"
Embed
{{embedcode}}
\";s:21:\"dzsaap_enable_youtube\";s:3:\"off\";s:33:\"dzsaap_enable_unregistered_submit\";s:3:\"off\";s:39:\"dzsaap_disable_self_hosted_audio_upload\";s:3:\"off\";s:33:\"dzsaap_default_portal_upload_type\";s:5:\"audio\";s:36:\"dzsaap_redirect_url_after_submission\";s:12:\"{{newtrack}}\";s:27:\"dzsapp_video_item_show_meta\";s:2:\"on\";s:23:\"dzsapp_player_shortcode\";s:0:\"\";s:42:\"dzsapp_video_item_show_meta_only_in_single\";s:2:\"on\";s:30:\"dzsaap_default_thumbnail_image\";s:31:\"https://via.placeholder.com/150\";s:14:\"playlists_mode\";s:6:\"normal\";s:25:\"enable_ie11_compatibility\";s:3:\"off\";s:16:\"script_use_async\";s:3:\"off\";s:16:\"script_use_defer\";s:3:\"off\";s:24:\"exceprt_zoomsounds_posts\";s:333:\"[zoomsounds_player type=\"detect\" dzsap_meta_source_attachment_id=\"{{postid}}\" source=\"{{source}}\" thumb=\"{{thumb}}\" config=\"sample--skin-wave--with-comments\" autoplay=\"off\" loop=\"off\" open_in_ultibox=\"off\" enable_likes=\"off\" enable_views=\"on\" play_in_footer_player=\"on\" enable_download_button=\"off\" download_custom_link_enable=\"off\"]\";s:28:\"excerpt_hide_zoomsounds_data\";s:3:\"off\";s:24:\"dzsap_wave_generate_auto\";s:2:\"on\";s:13:\"debug_queries\";s:3:\"off\";s:28:\"failsafe_ajax_reinit_players\";s:3:\"off\";s:24:\"dzsap_categories_rewrite\";s:14:\"audio-category\";s:18:\"dzsap_tags_rewrite\";s:9:\"audio-tag\";s:21:\"dzsap_sliders_rewrite\";s:12:\"audio-slider\";s:22:\"init_javascript_method\";s:4:\"auto\";s:32:\"multisharer_social_share_section\";s:7:\"default\";s:29:\"multisharer_shareLink_section\";s:7:\"default\";s:25:\"multisharer_embed_section\";s:7:\"default\";}','yes'); +/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_postmeta` +-- + +DROP TABLE IF EXISTS `wp_postmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_postmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `post_id` (`post_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_postmeta` +-- + +LOCK TABLES `wp_postmeta` WRITE; +/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; +INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'); +/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_posts` +-- + +DROP TABLE IF EXISTS `wp_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_posts` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', + `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', + `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', + `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', + `post_password` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', + `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `menu_order` int(11) NOT NULL DEFAULT '0', + `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', + `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `comment_count` bigint(20) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `post_name` (`post_name`(191)), + KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), + KEY `post_parent` (`post_parent`), + KEY `post_author` (`post_author`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_posts` +-- + +LOCK TABLES `wp_posts` WRITE; +/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; +INSERT INTO `wp_posts` VALUES (1,1,'2025-02-08 02:09:02','2025-02-08 02:09:02','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2025-02-08 02:09:02','2025-02-08 02:09:02','',0,'http://192.168.30.6:8080/?p=1',0,'post','',1),(2,1,'2025-02-08 02:09:02','2025-02-08 02:09:02','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2025-02-08 02:09:02','2025-02-08 02:09:02','',0,'http://192.168.30.6:8080/?page_id=2',0,'page','',0),(3,1,'2025-02-08 02:09:37','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2025-02-08 02:09:37','0000-00-00 00:00:00','',0,'http://192.168.30.6:8080/?p=3',0,'post','',0),(4,1,'2025-02-08 02:09:37','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2025-02-08 02:09:37','0000-00-00 00:00:00','',0,'http://192.168.30.6:8080/?p=4',0,'post','',0); +/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_relationships` +-- + +DROP TABLE IF EXISTS `wp_term_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_relationships` ( + `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `term_order` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`object_id`,`term_taxonomy_id`), + KEY `term_taxonomy_id` (`term_taxonomy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_relationships` +-- + +LOCK TABLES `wp_term_relationships` WRITE; +/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; +INSERT INTO `wp_term_relationships` VALUES (1,1,0); +/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_taxonomy` +-- + +DROP TABLE IF EXISTS `wp_term_taxonomy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_taxonomy` ( + `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, + `parent` bigint(20) unsigned NOT NULL DEFAULT '0', + `count` bigint(20) NOT NULL DEFAULT '0', + PRIMARY KEY (`term_taxonomy_id`), + UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), + KEY `taxonomy` (`taxonomy`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_taxonomy` +-- + +LOCK TABLES `wp_term_taxonomy` WRITE; +/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; +INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); +/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_termmeta` +-- + +DROP TABLE IF EXISTS `wp_termmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_termmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`meta_id`), + KEY `term_id` (`term_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_termmeta` +-- + +LOCK TABLES `wp_termmeta` WRITE; +/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_terms` +-- + +DROP TABLE IF EXISTS `wp_terms`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_terms` ( + `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `term_group` bigint(10) NOT NULL DEFAULT '0', + PRIMARY KEY (`term_id`), + KEY `slug` (`slug`(191)), + KEY `name` (`name`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_terms` +-- + +LOCK TABLES `wp_terms` WRITE; +/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; +INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0); +/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_usermeta` +-- + +DROP TABLE IF EXISTS `wp_usermeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_usermeta` ( + `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, + PRIMARY KEY (`umeta_id`), + KEY `user_id` (`user_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_usermeta` +-- + +LOCK TABLES `wp_usermeta` WRITE; +/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; +INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','test'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers',''),(13,1,'show_welcome_panel','1'),(14,1,'session_tokens','a:3:{s:64:\"c434bdece7aa1d28d9b43abea4d11cab04d2aeaa8764d78cfc5279991b17d2dc\";a:4:{s:10:\"expiration\";i:1739153370;s:2:\"ip\";s:13:\"192.168.1.102\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1738980570;}s:64:\"001b33d9b77348601b637f23cf4fc937112b60677de00ff00bb069959090abb7\";a:4:{s:10:\"expiration\";i:1739153374;s:2:\"ip\";s:13:\"192.168.1.102\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1738980574;}s:64:\"914f4f9639ea52ac3b8c5c1ebfecc4df4d2362c73c71c598511332bd28fe32fb\";a:4:{s:10:\"expiration\";i:1739153378;s:2:\"ip\";s:13:\"192.168.1.102\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1738980578;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','3'); +/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_users` +-- + +DROP TABLE IF EXISTS `wp_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_users` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + `user_status` int(11) NOT NULL DEFAULT '0', + `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', + PRIMARY KEY (`ID`), + KEY `user_login_key` (`user_login`), + KEY `user_nicename` (`user_nicename`), + KEY `user_email` (`user_email`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_users` +-- + +LOCK TABLES `wp_users` WRITE; +/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; +INSERT INTO `wp_users` VALUES (1,'test','$P$BgMOi65hHaqiV7foTGMebGGv45594e0','test','test@example.com','','2025-02-08 02:08:59','',0,'test'); +/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-02-08 2:16:07 \ No newline at end of file From a9c6883476e69dd30c49e7b1b1d7ce3a73a5dca7 Mon Sep 17 00:00:00 2001 From: hh-hunter <91593280+hh-hunter@users.noreply.github.com> Date: Sat, 8 Feb 2025 11:05:28 +0800 Subject: [PATCH 2/4] Update docker-compose.yml --- wordpress/cve-2021-39316/docker-compose.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/wordpress/cve-2021-39316/docker-compose.yml b/wordpress/cve-2021-39316/docker-compose.yml index 3ee83f05..d2dc4711 100644 --- a/wordpress/cve-2021-39316/docker-compose.yml +++ b/wordpress/cve-2021-39316/docker-compose.yml @@ -1,9 +1,7 @@ version: '3.1' - services: - wordpress: - image: wordpress + image: hhhhhunter/cve202139316:latest restart: always ports: - 8080:80 @@ -12,9 +10,6 @@ services: WORDPRESS_DB_USER: exampleuser WORDPRESS_DB_PASSWORD: examplepass WORDPRESS_DB_NAME: exampledb - volumes: - - wordpress:/var/www/html - db: image: mysql:5.7 restart: always @@ -22,10 +17,7 @@ services: MYSQL_DATABASE: exampledb MYSQL_USER: exampleuser MYSQL_PASSWORD: examplepass - MYSQL_RANDOM_ROOT_PASSWORD: '1' + MYSQL_ROOT_PASSWORD: '1' volumes: - - db:/var/lib/mysql - -volumes: - wordpress: - db: \ No newline at end of file + - ./db:/var/lib/mysql + - ./init.sql:/docker-entrypoint-initdb.d/init.sql From 178141f8cf70321b86728cb0ddf7b4ee2357e29c Mon Sep 17 00:00:00 2001 From: hh-hunter <91593280+hh-hunter@users.noreply.github.com> Date: Sat, 8 Feb 2025 13:59:12 +0800 Subject: [PATCH 3/4] Update docker-compose.yml --- wordpress/cve-2021-39316/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordpress/cve-2021-39316/docker-compose.yml b/wordpress/cve-2021-39316/docker-compose.yml index d2dc4711..1311795f 100644 --- a/wordpress/cve-2021-39316/docker-compose.yml +++ b/wordpress/cve-2021-39316/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.1' services: wordpress: - image: hhhhhunter/cve202139316:latest + image: githhhunter/cve202139316:latest restart: always ports: - 8080:80 From c0f79097a1e0408ac727677db3af5c7e17002aa3 Mon Sep 17 00:00:00 2001 From: hh-hunter <91593280+hh-hunter@users.noreply.github.com> Date: Sat, 8 Feb 2025 14:39:18 +0800 Subject: [PATCH 4/4] Update docker-compose.yml --- wordpress/cve-2021-39316/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordpress/cve-2021-39316/docker-compose.yml b/wordpress/cve-2021-39316/docker-compose.yml index 1311795f..0c0b4d7e 100644 --- a/wordpress/cve-2021-39316/docker-compose.yml +++ b/wordpress/cve-2021-39316/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.1' services: wordpress: - image: githhhunter/cve202139316:latest + image: ghcr.io/hh-hunter/cve202139316:latest restart: always ports: - 8080:80