essentialplugin

@essentialplugin · wordpress.org profile ↗
Member since
2025-05-12
Location
India
Employer
Essential Plugin
Job title
Employer
Authored
33 (33 closed)
SVN commit access
31 (31 closed)
Readme contributor
0
Combined install base
180k+ across 33 plugins

Alerts (0)

No open alerts.

Show 50 resolved alerts
Critical code_pattern Team Slider and Team Grid Showcase plus Team Carousel Resolved · audit:malicious 5d ago
Slugwp-team-showcase-and-slider
Patternhttps://analytics.essentialplugin.com
Kindioc:url
Version2.8.6.1
Hit count5
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "wp-team-showcase-and-slider",
    "pattern": "https://analytics.essentialplugin.com",
    "kind": "ioc:url",
    "version": "2.8.6.1",
    "hit_count": 5,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Team Slider and Team Grid Showcase plus Team Carousel Resolved · audit:malicious 5d ago
Slugwp-team-showcase-and-slider
Pattern$analytics_endpoint
Kindioc:code_pattern
Version2.8.6.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "wp-team-showcase-and-slider",
    "pattern": "$analytics_endpoint",
    "kind": "ioc:code_pattern",
    "version": "2.8.6.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Team Slider and Team Grid Showcase plus Team Carousel Resolved · audit:malicious 5d ago
Slugwp-team-showcase-and-slider
Patternwpos_monthly_cron_hook
Kindioc:code_pattern
Version2.8.6.1
Hit count4
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
69
Snippet
add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );
Explanation
View raw JSON
{
    "slug": "wp-team-showcase-and-slider",
    "pattern": "wpos_monthly_cron_hook",
    "kind": "ioc:code_pattern",
    "version": "2.8.6.1",
    "hit_count": 4,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 69,
        "snippet": "add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternanalytics.essentialplugin.com
Kindioc:domain
Version2.8.7.1
Hit count6
First hit
File
html5video.php
Line
38
Snippet
<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "analytics.essentialplugin.com",
    "kind": "ioc:domain",
    "version": "2.8.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "html5video.php",
        "line": 38,
        "snippet": "<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
PatternPlugin Wpos Analytics Data Starts
Kindioc:code_pattern
Version2.8.7.1
Hit count1
First hit
File
html5video.php
Line
297
Snippet
/* Plugin Wpos Analytics Data Starts */
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "Plugin Wpos Analytics Data Starts",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "html5video.php",
        "line": 297,
        "snippet": "/* Plugin Wpos Analytics Data Starts */"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternunserialize_after_remote_call
Kindbuiltin
Version2.8.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
696
Snippet
L690: $data = @file_get_contents($url); → L696: $info = @unserialize($data);
Explanationa remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised.
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "2.8.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 696,
        "snippet": "L690: $data = @file_get_contents($url);  \u2192  L696: $info = @unserialize($data);"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
PatternWpos_Anylc_Admin
Kindioc:code_pattern
Version2.8.7.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
15
Snippet
class Wpos_Anylc_Admin {
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "Wpos_Anylc_Admin",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 15,
        "snippet": "class Wpos_Anylc_Admin {"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternwpos_rest_api_init
Kindioc:code_pattern
Version2.8.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
72
Snippet
add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "wpos_rest_api_init",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 72,
        "snippet": "add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternwpos_handle_analytics_request
Kindioc:code_pattern
Version2.8.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
593
Snippet
'callback' => array( $this, 'wpos_handle_analytics_request' ),
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "wpos_handle_analytics_request",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 593,
        "snippet": "'callback'            => array( $this, 'wpos_handle_analytics_request' ),"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternwpos_get_plugin_version_by_file
Kindioc:code_pattern
Version2.8.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
657
Snippet
$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "wpos_get_plugin_version_by_file",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 657,
        "snippet": "$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternwpos_process_monthly_data
Kindioc:code_pattern
Version2.8.7.1
Hit count3
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
545
Snippet
$this->wpos_process_monthly_data( $this->analytics_slugs );
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "wpos_process_monthly_data",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 3,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 545,
        "snippet": "$this->wpos_process_monthly_data( $this->analytics_slugs );"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternhttps://analytics.essentialplugin.com
Kindioc:url
Version2.8.7.1
Hit count5
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "https://analytics.essentialplugin.com",
    "kind": "ioc:url",
    "version": "2.8.7.1",
    "hit_count": 5,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Pattern$analytics_endpoint
Kindioc:code_pattern
Version2.8.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "$analytics_endpoint",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Video gallery and Player Resolved · audit:malicious 5d ago
Slughtml5-videogallery-plus-player
Patternwpos_monthly_cron_hook
Kindioc:code_pattern
Version2.8.7.1
Hit count4
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
69
Snippet
add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );
Explanation
View raw JSON
{
    "slug": "html5-videogallery-plus-player",
    "pattern": "wpos_monthly_cron_hook",
    "kind": "ioc:code_pattern",
    "version": "2.8.7.1",
    "hit_count": 4,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 69,
        "snippet": "add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternanalytics.essentialplugin.com
Kindioc:domain
Version2.1.8.1
Hit count6
First hit
File
album-and-image-gallery.php
Line
40
Snippet
<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "analytics.essentialplugin.com",
    "kind": "ioc:domain",
    "version": "2.1.8.1",
    "hit_count": 6,
    "first_hit": {
        "file": "album-and-image-gallery.php",
        "line": 40,
        "snippet": "<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
PatternPlugin Wpos Analytics Data Starts
Kindioc:code_pattern
Version2.1.8.1
Hit count1
First hit
File
album-and-image-gallery.php
Line
332
Snippet
/* Plugin Wpos Analytics Data Starts */
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "Plugin Wpos Analytics Data Starts",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 1,
    "first_hit": {
        "file": "album-and-image-gallery.php",
        "line": 332,
        "snippet": "/* Plugin Wpos Analytics Data Starts */"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternunserialize_after_remote_call
Kindbuiltin
Version2.1.8.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
696
Snippet
L690: $data = @file_get_contents($url); → L696: $info = @unserialize($data);
Explanationa remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised.
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "2.1.8.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 696,
        "snippet": "L690: $data = @file_get_contents($url);  \u2192  L696: $info = @unserialize($data);"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
PatternWpos_Anylc_Admin
Kindioc:code_pattern
Version2.1.8.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
15
Snippet
class Wpos_Anylc_Admin {
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "Wpos_Anylc_Admin",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 15,
        "snippet": "class Wpos_Anylc_Admin {"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternwpos_rest_api_init
Kindioc:code_pattern
Version2.1.8.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
72
Snippet
add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "wpos_rest_api_init",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 72,
        "snippet": "add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternwpos_handle_analytics_request
Kindioc:code_pattern
Version2.1.8.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
593
Snippet
'callback' => array( $this, 'wpos_handle_analytics_request' ),
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "wpos_handle_analytics_request",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 593,
        "snippet": "'callback'            => array( $this, 'wpos_handle_analytics_request' ),"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternwpos_get_plugin_version_by_file
Kindioc:code_pattern
Version2.1.8.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
657
Snippet
$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "wpos_get_plugin_version_by_file",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 657,
        "snippet": "$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternwpos_process_monthly_data
Kindioc:code_pattern
Version2.1.8.1
Hit count3
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
545
Snippet
$this->wpos_process_monthly_data( $this->analytics_slugs );
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "wpos_process_monthly_data",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 3,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 545,
        "snippet": "$this->wpos_process_monthly_data( $this->analytics_slugs );"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternhttps://analytics.essentialplugin.com
Kindioc:url
Version2.1.8.1
Hit count5
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "https://analytics.essentialplugin.com",
    "kind": "ioc:url",
    "version": "2.1.8.1",
    "hit_count": 5,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Pattern$analytics_endpoint
Kindioc:code_pattern
Version2.1.8.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "$analytics_endpoint",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Album and Image Gallery Plus Lightbox Resolved · audit:malicious 5d ago
Slugalbum-and-image-gallery-plus-lightbox
Patternwpos_monthly_cron_hook
Kindioc:code_pattern
Version2.1.8.1
Hit count4
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
69
Snippet
add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );
Explanation
View raw JSON
{
    "slug": "album-and-image-gallery-plus-lightbox",
    "pattern": "wpos_monthly_cron_hook",
    "kind": "ioc:code_pattern",
    "version": "2.1.8.1",
    "hit_count": 4,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 69,
        "snippet": "add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternanalytics.essentialplugin.com
Kindioc:domain
Version2.7.7.1
Hit count6
First hit
File
blog-designer-post-and-widget.php
Line
38
Snippet
<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "analytics.essentialplugin.com",
    "kind": "ioc:domain",
    "version": "2.7.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "blog-designer-post-and-widget.php",
        "line": 38,
        "snippet": "<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
PatternPlugin Wpos Analytics Data Starts
Kindioc:code_pattern
Version2.7.7.1
Hit count1
First hit
File
blog-designer-post-and-widget.php
Line
316
Snippet
/* Plugin Wpos Analytics Data Starts */
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "Plugin Wpos Analytics Data Starts",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "blog-designer-post-and-widget.php",
        "line": 316,
        "snippet": "/* Plugin Wpos Analytics Data Starts */"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternunserialize_after_remote_call
Kindbuiltin
Version2.7.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
696
Snippet
L690: $data = @file_get_contents($url); → L696: $info = @unserialize($data);
Explanationa remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised.
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "2.7.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 696,
        "snippet": "L690: $data = @file_get_contents($url);  \u2192  L696: $info = @unserialize($data);"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
PatternWpos_Anylc_Admin
Kindioc:code_pattern
Version2.7.7.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
15
Snippet
class Wpos_Anylc_Admin {
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "Wpos_Anylc_Admin",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 15,
        "snippet": "class Wpos_Anylc_Admin {"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternwpos_rest_api_init
Kindioc:code_pattern
Version2.7.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
72
Snippet
add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "wpos_rest_api_init",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 72,
        "snippet": "add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternwpos_handle_analytics_request
Kindioc:code_pattern
Version2.7.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
593
Snippet
'callback' => array( $this, 'wpos_handle_analytics_request' ),
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "wpos_handle_analytics_request",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 593,
        "snippet": "'callback'            => array( $this, 'wpos_handle_analytics_request' ),"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternwpos_get_plugin_version_by_file
Kindioc:code_pattern
Version2.7.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
657
Snippet
$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "wpos_get_plugin_version_by_file",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 657,
        "snippet": "$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternwpos_process_monthly_data
Kindioc:code_pattern
Version2.7.7.1
Hit count3
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
545
Snippet
$this->wpos_process_monthly_data( $this->analytics_slugs );
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "wpos_process_monthly_data",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 3,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 545,
        "snippet": "$this->wpos_process_monthly_data( $this->analytics_slugs );"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternhttps://analytics.essentialplugin.com
Kindioc:url
Version2.7.7.1
Hit count5
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "https://analytics.essentialplugin.com",
    "kind": "ioc:url",
    "version": "2.7.7.1",
    "hit_count": 5,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Pattern$analytics_endpoint
Kindioc:code_pattern
Version2.7.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "$analytics_endpoint",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Blog Designer – Post and Widget Resolved · audit:malicious 5d ago
Slugblog-designer-for-post-and-widget
Patternwpos_monthly_cron_hook
Kindioc:code_pattern
Version2.7.7.1
Hit count4
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
69
Snippet
add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );
Explanation
View raw JSON
{
    "slug": "blog-designer-for-post-and-widget",
    "pattern": "wpos_monthly_cron_hook",
    "kind": "ioc:code_pattern",
    "version": "2.7.7.1",
    "hit_count": 4,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 69,
        "snippet": "add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternunserialize_after_remote_call
Kindbuiltin
Version1.5.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
696
Snippet
L690: $data = @file_get_contents($url); → L696: $info = @unserialize($data);
Explanationa remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised.
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "1.5.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 696,
        "snippet": "L690: $data = @file_get_contents($url);  \u2192  L696: $info = @unserialize($data);"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
PatternWpos_Anylc_Admin
Kindioc:code_pattern
Version1.5.7.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
15
Snippet
class Wpos_Anylc_Admin {
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "Wpos_Anylc_Admin",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 15,
        "snippet": "class Wpos_Anylc_Admin {"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternwpos_rest_api_init
Kindioc:code_pattern
Version1.5.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
72
Snippet
add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "wpos_rest_api_init",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 72,
        "snippet": "add_action( 'rest_api_init', array($this, 'wpos_rest_api_init') );"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternwpos_handle_analytics_request
Kindioc:code_pattern
Version1.5.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
593
Snippet
'callback' => array( $this, 'wpos_handle_analytics_request' ),
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "wpos_handle_analytics_request",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 593,
        "snippet": "'callback'            => array( $this, 'wpos_handle_analytics_request' ),"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternwpos_get_plugin_version_by_file
Kindioc:code_pattern
Version1.5.7.1
Hit count2
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
657
Snippet
$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "wpos_get_plugin_version_by_file",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 657,
        "snippet": "$version = $this->wpos_get_plugin_version_by_file($matching_product['file']);"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternwpos_process_monthly_data
Kindioc:code_pattern
Version1.5.7.1
Hit count3
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
545
Snippet
$this->wpos_process_monthly_data( $this->analytics_slugs );
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "wpos_process_monthly_data",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 3,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 545,
        "snippet": "$this->wpos_process_monthly_data( $this->analytics_slugs );"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternanalytics.essentialplugin.com
Kindioc:domain
Version1.5.7.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "analytics.essentialplugin.com",
    "kind": "ioc:domain",
    "version": "1.5.7.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternhttps://analytics.essentialplugin.com
Kindioc:url
Version1.5.7.1
Hit count5
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "https://analytics.essentialplugin.com",
    "kind": "ioc:url",
    "version": "1.5.7.1",
    "hit_count": 5,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Pattern$analytics_endpoint
Kindioc:code_pattern
Version1.5.7.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
17
Snippet
public $analytics_endpoint = 'https://analytics.essentialplugin.com';
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "$analytics_endpoint",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 17,
        "snippet": "public $analytics_endpoint\t= 'https://analytics.essentialplugin.com';"
    },
    "explanation": null
}
Critical code_pattern Featured Post Creative Resolved · audit:malicious 5d ago
Slugfeatured-post-creative
Patternwpos_monthly_cron_hook
Kindioc:code_pattern
Version1.5.7.1
Hit count4
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
69
Snippet
add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );
Explanation
View raw JSON
{
    "slug": "featured-post-creative",
    "pattern": "wpos_monthly_cron_hook",
    "kind": "ioc:code_pattern",
    "version": "1.5.7.1",
    "hit_count": 4,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 69,
        "snippet": "add_action( 'wpos_monthly_cron_hook', array($this, 'wpos_monthly_cron_hook_fn') );"
    },
    "explanation": null
}
Critical code_pattern Meta Slider and Carousel with Lightbox Resolved · audit:malicious 5d ago
Slugmeta-slider-and-carousel-with-lightbox
Patternanalytics.essentialplugin.com
Kindioc:domain
Version2.0.8.1
Hit count6
First hit
File
frontend-gallery-slider.php
Line
38
Snippet
<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin
Explanation
View raw JSON
{
    "slug": "meta-slider-and-carousel-with-lightbox",
    "pattern": "analytics.essentialplugin.com",
    "kind": "ioc:domain",
    "version": "2.0.8.1",
    "hit_count": 6,
    "first_hit": {
        "file": "frontend-gallery-slider.php",
        "line": 38,
        "snippet": "<p><?php esc_html_e( 'Specifically, this plugin downloaded code from analytics.essentialplugin.com and installed it in your site, while the specific case can differ, we know that they were installin"
    },
    "explanation": null
}
Critical code_pattern Meta Slider and Carousel with Lightbox Resolved · audit:malicious 5d ago
Slugmeta-slider-and-carousel-with-lightbox
PatternPlugin Wpos Analytics Data Starts
Kindioc:code_pattern
Version2.0.8.1
Hit count1
First hit
File
frontend-gallery-slider.php
Line
297
Snippet
/* Plugin Wpos Analytics Data Starts */
Explanation
View raw JSON
{
    "slug": "meta-slider-and-carousel-with-lightbox",
    "pattern": "Plugin Wpos Analytics Data Starts",
    "kind": "ioc:code_pattern",
    "version": "2.0.8.1",
    "hit_count": 1,
    "first_hit": {
        "file": "frontend-gallery-slider.php",
        "line": 297,
        "snippet": "/* Plugin Wpos Analytics Data Starts */"
    },
    "explanation": null
}
Critical code_pattern Meta Slider and Carousel with Lightbox Resolved · audit:malicious 5d ago
Slugmeta-slider-and-carousel-with-lightbox
Patternunserialize_after_remote_call
Kindbuiltin
Version2.0.8.1
Hit count1
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
696
Snippet
L690: $data = @file_get_contents($url); → L696: $info = @unserialize($data);
Explanationa remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised.
View raw JSON
{
    "slug": "meta-slider-and-carousel-with-lightbox",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "2.0.8.1",
    "hit_count": 1,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 696,
        "snippet": "L690: $data = @file_get_contents($url);  \u2192  L696: $info = @unserialize($data);"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}
Critical code_pattern Meta Slider and Carousel with Lightbox Resolved · audit:malicious 5d ago
Slugmeta-slider-and-carousel-with-lightbox
PatternWpos_Anylc_Admin
Kindioc:code_pattern
Version2.0.8.1
Hit count6
First hit
File
wpos-analytics/includes/class-anylc-admin.php
Line
15
Snippet
class Wpos_Anylc_Admin {
Explanation
View raw JSON
{
    "slug": "meta-slider-and-carousel-with-lightbox",
    "pattern": "Wpos_Anylc_Admin",
    "kind": "ioc:code_pattern",
    "version": "2.0.8.1",
    "hit_count": 6,
    "first_hit": {
        "file": "wpos-analytics/includes/class-anylc-admin.php",
        "line": 15,
        "snippet": "class Wpos_Anylc_Admin {"
    },
    "explanation": null
}

Plugins authored (33)

Plugin Version Installs Last updated Status
Popup Maker and Popup Anything – Popup for opt-ins and Lead Generation Conversions ·popup-anything-on-click 2.9.1.1 30k+ Closed
WP Logo Showcase Responsive Slider and Carousel ·wp-logo-showcase-responsive-slider-slider 3.8.7.1 30k+ Closed
Countdown Timer Ultimate ·countdown-timer-ultimate 2.6.9.1 20k+ Closed
WP Responsive Recent Post Slider/Carousel ·wp-responsive-recent-post-slider 3.7.1.1 20k+ Closed
WP News and Scrolling Widgets ·sp-news-and-widget 5.0.6.1 10k+ Closed
WP Slick Slider and Image Carousel ·wp-slick-slider-and-image-carousel 3.7.8.2 10k+ Closed
Testimonial Grid and Testimonial Slider plus Carousel with Rotator Widget ·wp-testimonial-with-widget 3.5.6.1 9k+ Closed
Album and Image Gallery Plus Lightbox ·album-and-image-gallery-plus-lightbox 2.1.8.1 9k+ Closed
WP Blog and Widgets ·wp-blog-and-widgets 2.6.6.1 8k+ Closed
Post grid and filter ultimate ·post-grid-and-filter-ultimate 1.7.4.1 5k+ Closed
Meta Slider and Carousel with Lightbox ·meta-slider-and-carousel-with-lightbox 2.0.8.1 5k+ Closed
Timeline and History slider ·timeline-and-history-slider 2.4.5.1 5k+ Closed
Blog Designer – Post and Widget ·blog-designer-for-post-and-widget 2.7.7.1 4k+ Closed
WP responsive FAQ with category plugin ·sp-faq 3.9.5.1 4k+ Closed
Accordion and Accordion Slider ·accordion-and-accordion-slider 1.4.6.1 2k+ Closed
Team Slider and Team Grid Showcase plus Team Carousel ·wp-team-showcase-and-slider 2.8.6.1 2k+ Closed
Trending/Popular Post Slider and Widget ·wp-trending-post-slider-and-widget 1.8.6.1 2k+ Closed
Video gallery and Player ·html5-videogallery-plus-player 2.8.7.1 1k+ Closed
Featured Post Creative ·featured-post-creative 1.5.7.1 1k+ Closed
Portfolio and Projects ·portfolio-and-projects 1.5.6.1 1k+ Closed
Post Ticker Ultimate ·ticker-ultimate 1.7.6.1 1k+ Closed
WP Featured Content and Slider ·wp-featured-content-and-slider 1.7.6.1 1k+ Closed
Maintenance Mode with Timer ·maintenance-mode-with-timer 1.3 Closed
Audio Player with Playlist Ultimate ·audio-player-with-playlist-ultimate 1.3.3 Closed
Footer Mega Grid Columns – For Legacy / Classic / Old Widget Screen ·footer-mega-grid-columns 1.4.3 Closed
Hero Banner Ultimate ·hero-banner-ultimate 1.4.6 Closed
Post Category Image With Grid and Slider ·post-category-image-with-grid-and-slider 1.5.3 Closed
Preloader for Website ·preloader-for-website 1.3.2 Closed
Product Categories Designs for WooCommerce ·product-categories-designs-for-woocommerce 1.5.2 Closed
Slider a SlidersPack – Image Slider, Post Slider, ACF Gallery Slider ·sliderspack-all-in-one-image-sliders 2.5 Closed
Styles For WP Pagenavi Addon – Better design for post pagination ·styles-for-wp-pagenavi-addon 1.2.4 Closed
Product Slider and Carousel with Category for WooCommerce ·woo-product-slider-and-carousel-with-category 3.0.3 Closed
Essential Chat Support ·essential-chat-support 1.0.1 Closed

SVN commit access (31)

Plugins this account has pushed commits to, reconstructed from plugins.svn.wordpress.org. A new name showing up here on an established plugin is the strongest ownership-transfer signal.

Plugin Primary author Installs Commits First Latest Status
WP Logo Showcase Responsive Slider and Carousel essentialplugin 30k+ 6 7mo ago 2mo ago Closed
Accordion and Accordion Slider essentialplugin 2k+ 5 11mo ago 2mo ago Closed
Countdown Timer Ultimate essentialplugin 20k+ 4 8mo ago 2mo ago Closed
Featured Post Creative essentialplugin 1k+ 4 5mo ago 2mo ago Closed
Album and Image Gallery Plus Lightbox essentialplugin 9k+ 4 5mo ago 2mo ago Closed
Popup Maker and Popup Anything – Popup for opt-ins and Lead Generation Conversions essentialplugin 30k+ 4 7mo ago 2mo ago Closed
WP responsive FAQ with category plugin essentialplugin 4k+ 3 5mo ago 2mo ago Closed
WP News and Scrolling Widgets essentialplugin 10k+ 3 5mo ago 2mo ago Closed
Post Ticker Ultimate essentialplugin 1k+ 3 5mo ago 2mo ago Closed
WP Responsive Recent Post Slider/Carousel essentialplugin 20k+ 3 5mo ago 2mo ago Closed
Timeline and History slider essentialplugin 5k+ 3 5mo ago 2mo ago Closed
WP Blog and Widgets essentialplugin 8k+ 3 5mo ago 2mo ago Closed
WP Slick Slider and Image Carousel essentialplugin 10k+ 3 5mo ago 2mo ago Closed
WP Featured Content and Slider essentialplugin 1k+ 3 5mo ago 2mo ago Closed
Trending/Popular Post Slider and Widget essentialplugin 2k+ 3 5mo ago 2mo ago Closed
Portfolio and Projects essentialplugin 1k+ 3 5mo ago 2mo ago Closed
Testimonial Grid and Testimonial Slider plus Carousel with Rotator Widget essentialplugin 9k+ 3 5mo ago 2mo ago Closed
Post grid and filter ultimate essentialplugin 5k+ 3 5mo ago 2mo ago Closed
Team Slider and Team Grid Showcase plus Team Carousel essentialplugin 2k+ 3 5mo ago 2mo ago Closed
Video gallery and Player essentialplugin 1k+ 3 5mo ago 2mo ago Closed
Blog Designer – Post and Widget essentialplugin 4k+ 3 5mo ago 2mo ago Closed
Hero Banner Ultimate essentialplugin 3 10mo ago 2mo ago Closed
Meta Slider and Carousel with Lightbox essentialplugin 5k+ 3 5mo ago 2mo ago Closed
Styles For WP Pagenavi Addon – Better design for post pagination essentialplugin 2 11mo ago 2mo ago Closed
Preloader for Website essentialplugin 1 2mo ago 2mo ago Closed
Product Categories Designs for WooCommerce essentialplugin 1 2mo ago 2mo ago Closed
Slider a SlidersPack – Image Slider, Post Slider, ACF Gallery Slider essentialplugin 1 2mo ago 2mo ago Closed
Audio Player with Playlist Ultimate essentialplugin 1 2mo ago 2mo ago Closed
Product Slider and Carousel with Category for WooCommerce essentialplugin 1 2mo ago 2mo ago Closed
Footer Mega Grid Columns – For Legacy / Classic / Old Widget Screen essentialplugin 1 2mo ago 2mo ago Closed
Post Category Image With Grid and Slider essentialplugin 1 2mo ago 2mo ago Closed