Automattic

@automattic · wordpress.org profile ↗
Member since
2009-11-05
Location
Employer
Job title
Authored
115 (40 closed)
SVN commit access
43
Readme contributor
99
Combined install base
27.6M+ across 217 plugins

Alerts (0)

No open alerts.

Show 29 resolved alerts
Critical forum_complaint_cluster WooCommerce Resolved · false_positive_keyword_overmatch_security_themed_p 1d ago
Slugwoocommerce
Active installs7,000,000
Critical matches1
High matches0
Lookback days90
Sample threads
TitleDateUrlStarterKeyword
Paypal Payments Plugin Doesn’t Understand Fraud Prevention2026-04-29 21:09:52https://wordpress.org/support/topic/paypal-payments-plugin-doesnt-understand-fraud-prevention/kingdomfantasy6malware
ExplanationCluster of support-forum threads in the last 90 days containing user-reported attack vocabulary. Critical when any thread mentions explicit compromise terms (hacked / backdoor / admin user added); high when two or more mention symptom-class terms (redirect to spam / vendor alerts).
View raw JSON
{
    "slug": "woocommerce",
    "active_installs": 7000000,
    "critical_matches": 1,
    "high_matches": 0,
    "lookback_days": 90,
    "sample_threads": [
        {
            "title": "Paypal Payments Plugin Doesn’t Understand Fraud Prevention",
            "date": "2026-04-29 21:09:52",
            "url": "https://wordpress.org/support/topic/paypal-payments-plugin-doesnt-understand-fraud-prevention/",
            "starter": "kingdomfantasy6",
            "keyword": "malware"
        }
    ],
    "explanation": "Cluster of support-forum threads in the last 90 days containing user-reported attack vocabulary. Critical when any thread mentions explicit compromise terms (hacked / backdoor / admin user added); high when two or more mention symptom-class terms (redirect to spam / vendor alerts)."
}
Critical code_pattern Jetpack VaultPress Resolved · benign_architectural_concern 1d ago
Slugvaultpress
Patternunserialize_after_remote_call
Kindbuiltin
Version4.0.7
Hit count1
First hit
File
vaultpress.php
Line
1,516
Snippet
L1512: $r = wp_remote_get( $url=sprintf( "%s://%s/%s?cidr_ranges=1", $protocol, $hostname, $pa → L1516: $data = @unserialize( wp_remote_retrieve_body( $r ) );
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": "vaultpress",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "4.0.7",
    "hit_count": 1,
    "first_hit": {
        "file": "vaultpress.php",
        "line": 1516,
        "snippet": "L1512: $r = wp_remote_get( $url=sprintf( \"%s://%s/%s?cidr_ranges=1\", $protocol, $hostname, $pa  \u2192  L1516: $data = @unserialize( wp_remote_retrieve_body( $r ) );"
    },
    "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_scan_delta Jetpack VaultPress Resolved · false_positive_cdn_known_good 2d ago
Slugvaultpress
Previous version4.0.7
Current version4.0.7
New findings
PatternKindFileLineSnippetConfidence
unserialize_after_remote_callbuiltinvaultpress.php1,516L1512: $r = wp_remote_get( $url=sprintf( "%s://%s/%s?cidr_ranges=1", $protocol, $hostname, $pa → L1516: $data = @unserialize( wp_remote_retrieve_body( $r ) );high
New finding count1
View raw JSON
{
    "slug": "vaultpress",
    "previous_version": "4.0.7",
    "current_version": "4.0.7",
    "new_findings": [
        {
            "pattern": "unserialize_after_remote_call",
            "kind": "builtin",
            "file": "vaultpress.php",
            "line": 1516,
            "snippet": "L1512: $r = wp_remote_get( $url=sprintf( \"%s://%s/%s?cidr_ranges=1\", $protocol, $hostname, $pa  \u2192  L1516: $data = @unserialize( wp_remote_retrieve_body( $r ) );",
            "confidence": "high"
        }
    ],
    "new_finding_count": 1
}
Critical code_pattern Jetpack – WP Security, Backup, Speed, & Growth Resolved · no_longer_matches 7d ago
Slugjetpack
Patternunserialize_after_remote_call
Kindbuiltin
Version15.7.1
Hit count2
First hit
File
jetpack_vendor/automattic/jetpack-waf/src/class-waf-stats.php
Line
151
Snippet
L137: $body = json_decode( wp_remote_retrieve_body( $response ) ); → L151: return maybe_unserialize( get_option( 'jetpack_protect_global_stats' ) );
Explanationa remote HTTP fetch (`wp_remote_*`/`curl_exec`) is followed by `unserialize`/`maybe_unserialize` within the same file — classic PHP Object Injection C2 gadget used by EP and most WP supply-chain backdoors. Legit plugins essentially never do this.
View raw JSON
{
    "slug": "jetpack",
    "pattern": "unserialize_after_remote_call",
    "kind": "builtin",
    "version": "15.7.1",
    "hit_count": 2,
    "first_hit": {
        "file": "jetpack_vendor/automattic/jetpack-waf/src/class-waf-stats.php",
        "line": 151,
        "snippet": "L137: $body = json_decode( wp_remote_retrieve_body( $response ) );  \u2192  L151: return maybe_unserialize( get_option( 'jetpack_protect_global_stats' ) );"
    },
    "explanation": "a remote HTTP fetch (`wp_remote_*`/`curl_exec`) is followed by `unserialize`/`maybe_unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget used by EP and most WP supply-chain backdoors. Legit plugins essentially never do this."
}
Critical code_scan_delta Jetpack – WP Security, Backup, Speed, & Growth Resolved · fp_proximity_only_different_vars 7d ago
Slugjetpack
Previous version15.7.1
Current version15.7.1
New findings
PatternKindFileLineSnippetConfidence
unserialize_after_remote_callbuiltinjetpack_vendor/automattic/jetpack-waf/src/class-waf-stats.php151L137: $body = json_decode( wp_remote_retrieve_body( $response ) ); → L151: return maybe_unserialize( get_option( 'jetpack_protect_global_stats' ) );high
unserialize_after_remote_callbuiltinjson-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php170L169: $response = wp_remote_post( $url, $args ); → L170: $theme_data = unserialize( $response['body'] ); // phpcs:ignore WordPress.PHP.Discouraghigh
New finding count2
View raw JSON
{
    "slug": "jetpack",
    "previous_version": "15.7.1",
    "current_version": "15.7.1",
    "new_findings": [
        {
            "pattern": "unserialize_after_remote_call",
            "kind": "builtin",
            "file": "jetpack_vendor/automattic/jetpack-waf/src/class-waf-stats.php",
            "line": 151,
            "snippet": "L137: $body = json_decode( wp_remote_retrieve_body( $response ) );  \u2192  L151: return maybe_unserialize( get_option( 'jetpack_protect_global_stats' ) );",
            "confidence": "high"
        },
        {
            "pattern": "unserialize_after_remote_call",
            "kind": "builtin",
            "file": "json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php",
            "line": 170,
            "snippet": "L169: $response   = wp_remote_post( $url, $args );  \u2192  L170: $theme_data = unserialize( $response['body'] ); // phpcs:ignore WordPress.PHP.Discourag",
            "confidence": "high"
        }
    ],
    "new_finding_count": 2
}
High committer_younger_than_plugin Page Optimize Resolved · no_longer_matches 1d ago
Slugpage-optimize
Committer sluga8caustin
Committer display namea8caustin
Committer employer
Committer member since2023-11-27
Committer first commit2024-10-23 19:36:37
Committer commit count4
Plugin listed authorautomattic
Earliest plugin commit2020-02-21 19:41:06
Plugin age at join days1,705
Committer age at join days331
Active installs200,000
View raw JSON
{
    "slug": "page-optimize",
    "committer_slug": "a8caustin",
    "committer_display_name": "a8caustin",
    "committer_employer": null,
    "committer_member_since": "2023-11-27",
    "committer_first_commit": "2024-10-23 19:36:37",
    "committer_commit_count": 4,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2020-02-21 19:41:06",
    "plugin_age_at_join_days": 1705,
    "committer_age_at_join_days": 331,
    "active_installs": 200000
}
High committer_younger_than_plugin WooCommerce Resolved · no_longer_matches 1d ago
Slugwoocommerce
Committer slugalopezari
Committer display namealopezari
Committer employer
Committer member since2023-02-17
Committer first commit2023-10-10 20:12:37
Committer commit count12
Plugin listed authorautomattic
Earliest plugin commit2022-02-10 13:36:23
Plugin age at join days607
Committer age at join days235
Active installs7,000,000
View raw JSON
{
    "slug": "woocommerce",
    "committer_slug": "alopezari",
    "committer_display_name": "alopezari",
    "committer_employer": null,
    "committer_member_since": "2023-02-17",
    "committer_first_commit": "2023-10-10 20:12:37",
    "committer_commit_count": 12,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2022-02-10 13:36:23",
    "plugin_age_at_join_days": 607,
    "committer_age_at_join_days": 235,
    "active_installs": 7000000
}
High committer_younger_than_plugin WooCommerce Resolved · no_longer_matches 1d ago
Slugwoocommerce
Committer slugnamanorg
Committer display nameNaman
Committer employer
Committer member since2024-05-16
Committer first commit2024-08-26 14:13:03
Committer commit count6
Plugin listed authorautomattic
Earliest plugin commit2022-02-10 13:36:23
Plugin age at join days928
Committer age at join days102
Active installs7,000,000
View raw JSON
{
    "slug": "woocommerce",
    "committer_slug": "namanorg",
    "committer_display_name": "Naman",
    "committer_employer": null,
    "committer_member_since": "2024-05-16",
    "committer_first_commit": "2024-08-26 14:13:03",
    "committer_commit_count": 6,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2022-02-10 13:36:23",
    "plugin_age_at_join_days": 928,
    "committer_age_at_join_days": 102,
    "active_installs": 7000000
}
High committer_younger_than_plugin Akismet Anti-spam: Spam Protection Resolved · no_longer_matches 1d ago
Slugakismet
Committer slugandyperdomo
Committer display nameAndy Perdomo (a11n)
Committer employer
Committer member since2025-01-07
Committer first commit2025-04-02 00:41:10
Committer commit count11
Plugin listed authorautomattic
Earliest plugin commit2015-04-28 14:50:55
Plugin age at join days3,626
Committer age at join days85
Active installs6,000,000
View raw JSON
{
    "slug": "akismet",
    "committer_slug": "andyperdomo",
    "committer_display_name": "Andy Perdomo (a11n)",
    "committer_employer": null,
    "committer_member_since": "2025-01-07",
    "committer_first_commit": "2025-04-02 00:41:10",
    "committer_commit_count": 11,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2015-04-28 14:50:55",
    "plugin_age_at_join_days": 3626,
    "committer_age_at_join_days": 85,
    "active_installs": 6000000
}
High committer_younger_than_plugin Jetpack – WP Security, Backup, Speed, & Growth Resolved · no_longer_matches 1d ago
Slugjetpack
Committer slugveryhappytiger
Committer display nameveryhappytiger (a11n)
Committer employer
Committer member since2025-01-15
Committer first commit2025-11-11 00:53:25
Committer commit count16
Plugin listed authorautomattic
Earliest plugin commit2024-08-06 16:30:06
Plugin age at join days461
Committer age at join days300
Active installs3,000,000
View raw JSON
{
    "slug": "jetpack",
    "committer_slug": "veryhappytiger",
    "committer_display_name": "veryhappytiger (a11n)",
    "committer_employer": null,
    "committer_member_since": "2025-01-15",
    "committer_first_commit": "2025-11-11 00:53:25",
    "committer_commit_count": 16,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2024-08-06 16:30:06",
    "plugin_age_at_join_days": 461,
    "committer_age_at_join_days": 300,
    "active_installs": 3000000
}
High code_scan_delta Sensei LMS – Online Courses, Quizzes, & Learning Resolved · false_positive_cdn_known_good 2d ago
Slugsensei-lms
Previous version4.25.2
Current version4.25.2
New findings
PatternKindFileLineSnippetConfidenceDetails
remote_enqueuebuiltinincludes/blocks/class-sensei-blocks.php95wp_register_script( 'sensei-youtube-iframe-api', 'https://www.youtube.com/iframe_api', [], 'unversioned', false );medium
Url
https://www.youtube.com/iframe_api
Url host
www.youtube.com
remote_enqueuebuiltinincludes/blocks/class-sensei-blocks.php96wp_register_script( 'sensei-vimeo-iframe-api', 'https://player.vimeo.com/api/player.js', [], 'unversioned', false );medium
Url
https://player.vimeo.com/api/player.js
Url host
player.vimeo.com
New finding count2
View raw JSON
{
    "slug": "sensei-lms",
    "previous_version": "4.25.2",
    "current_version": "4.25.2",
    "new_findings": [
        {
            "pattern": "remote_enqueue",
            "kind": "builtin",
            "file": "includes/blocks/class-sensei-blocks.php",
            "line": 95,
            "snippet": "wp_register_script( 'sensei-youtube-iframe-api', 'https://www.youtube.com/iframe_api', [], 'unversioned', false );",
            "confidence": "medium",
            "details": {
                "url": "https://www.youtube.com/iframe_api",
                "url_host": "www.youtube.com"
            }
        },
        {
            "pattern": "remote_enqueue",
            "kind": "builtin",
            "file": "includes/blocks/class-sensei-blocks.php",
            "line": 96,
            "snippet": "wp_register_script( 'sensei-vimeo-iframe-api', 'https://player.vimeo.com/api/player.js', [], 'unversioned', false );",
            "confidence": "medium",
            "details": {
                "url": "https://player.vimeo.com/api/player.js",
                "url_host": "player.vimeo.com"
            }
        }
    ],
    "new_finding_count": 2
}
High committer_younger_than_plugin Jetpack Boost – Website Speed, Performance and Critical CSS Resolved · benign_company_employee 5d ago
Slugjetpack-boost
Committer sluglsarsfield
Committer display nameLiam Sarsfield (a11n)
Committer employer
Committer member since2024-09-24
Committer first commit2025-01-27 13:39:31
Committer commit count17
Plugin listed authorautomattic
Earliest plugin commit2021-06-17 12:10:58
Plugin age at join days1,320
Committer age at join days125
Active installs200,000
View raw JSON
{
    "slug": "jetpack-boost",
    "committer_slug": "lsarsfield",
    "committer_display_name": "Liam Sarsfield (a11n)",
    "committer_employer": null,
    "committer_member_since": "2024-09-24",
    "committer_first_commit": "2025-01-27 13:39:31",
    "committer_commit_count": 17,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2021-06-17 12:10:58",
    "plugin_age_at_join_days": 1320,
    "committer_age_at_join_days": 125,
    "active_installs": 200000
}
High committer_younger_than_plugin Page Optimize Resolved · benign_company_employee 5d ago
Slugpage-optimize
Committer slugrcrdortiz
Committer display namercrdortiz
Committer employer
Committer member since2022-10-06
Committer first commit2023-08-29 12:52:34
Committer commit count2
Plugin listed authorautomattic
Earliest plugin commit2020-02-21 19:41:06
Plugin age at join days1,284
Committer age at join days327
Active installs200,000
View raw JSON
{
    "slug": "page-optimize",
    "committer_slug": "rcrdortiz",
    "committer_display_name": "rcrdortiz",
    "committer_employer": null,
    "committer_member_since": "2022-10-06",
    "committer_first_commit": "2023-08-29 12:52:34",
    "committer_commit_count": 2,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2020-02-21 19:41:06",
    "plugin_age_at_join_days": 1284,
    "committer_age_at_join_days": 327,
    "active_installs": 200000
}
High committer_younger_than_plugin Crowdsignal Forms Resolved · benign_company_employee 5d ago
Slugcrowdsignal-forms
Committer slugjcheringer
Committer display nameJoão Heringer (a11n)
Committer employer
Committer member since2021-12-21
Committer first commit2022-04-26 17:29:52
Committer commit count2
Plugin listed authorautomattic
Earliest plugin commit2020-07-23 23:24:26
Plugin age at join days641
Committer age at join days126
Active installs200,000
View raw JSON
{
    "slug": "crowdsignal-forms",
    "committer_slug": "jcheringer",
    "committer_display_name": "Jo\u00e3o Heringer (a11n)",
    "committer_employer": null,
    "committer_member_since": "2021-12-21",
    "committer_first_commit": "2022-04-26 17:29:52",
    "committer_commit_count": 2,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2020-07-23 23:24:26",
    "plugin_age_at_join_days": 641,
    "committer_age_at_join_days": 126,
    "active_installs": 200000
}
High committer_younger_than_plugin Crowdsignal Dashboard – Polls, Surveys & more Resolved · benign_company_employee 5d ago
Slugpolldaddy
Committer slugpanosktn
Committer display namepanosktn
Committer employer
Committer member since2016-05-05
Committer first commit2016-05-26 15:06:26
Committer commit count7
Plugin listed authorautomattic
Earliest plugin commit2008-10-15 18:09:01
Plugin age at join days2,779
Committer age at join days21
Active installs100,000
View raw JSON
{
    "slug": "polldaddy",
    "committer_slug": "panosktn",
    "committer_display_name": "panosktn",
    "committer_employer": null,
    "committer_member_since": "2016-05-05",
    "committer_first_commit": "2016-05-26 15:06:26",
    "committer_commit_count": 7,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2008-10-15 18:09:01",
    "plugin_age_at_join_days": 2779,
    "committer_age_at_join_days": 21,
    "active_installs": 100000
}
High committer_younger_than_plugin Jetpack Protect Resolved · benign_company_employee 5d ago
Slugjetpack-protect
Committer slugnjweller
Committer display namenjweller
Committer employer
Committer member since2022-05-23
Committer first commit2022-11-17 23:37:54
Committer commit count22
Plugin listed authorautomattic
Earliest plugin commit2022-05-13 18:20:34
Plugin age at join days188
Committer age at join days178
Active installs100,000
View raw JSON
{
    "slug": "jetpack-protect",
    "committer_slug": "njweller",
    "committer_display_name": "njweller",
    "committer_employer": null,
    "committer_member_since": "2022-05-23",
    "committer_first_commit": "2022-11-17 23:37:54",
    "committer_commit_count": 22,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2022-05-13 18:20:34",
    "plugin_age_at_join_days": 188,
    "committer_age_at_join_days": 178,
    "active_installs": 100000
}
Medium contributor_added WP Job Manager Resolved · cold_start_fp 1d ago
Slugwp-job-manager
New contributorsjennywp
Active installs80,000
View raw JSON
{
    "slug": "wp-job-manager",
    "new_contributors": [
        "jennywp"
    ],
    "active_installs": 80000
}
Medium committer_younger_than_plugin Sensei LMS – Online Courses, Quizzes, & Learning Resolved · no_longer_matches 1d ago
Slugsensei-lms
Committer slugimranh920
Committer display nameImran Hossain (a11n)
Committer employer
Committer member since2021-10-01
Committer first commit2022-09-26 16:37:04
Committer commit count14
Plugin listed authorautomattic
Earliest plugin commit2019-04-28 21:25:46
Plugin age at join days1,246
Committer age at join days360
Active installs10,000
View raw JSON
{
    "slug": "sensei-lms",
    "committer_slug": "imranh920",
    "committer_display_name": "Imran Hossain (a11n)",
    "committer_employer": null,
    "committer_member_since": "2021-10-01",
    "committer_first_commit": "2022-09-26 16:37:04",
    "committer_commit_count": 14,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2019-04-28 21:25:46",
    "plugin_age_at_join_days": 1246,
    "committer_age_at_join_days": 360,
    "active_installs": 10000
}
Medium committer_younger_than_plugin Sensei LMS – Online Courses, Quizzes, & Learning Resolved · no_longer_matches 1d ago
Slugsensei-lms
Committer slugnurguly
Committer display namenurguly (a11n)
Committer employer
Committer member since2021-10-19
Committer first commit2022-05-31 14:01:11
Committer commit count4
Plugin listed authorautomattic
Earliest plugin commit2019-04-28 21:25:46
Plugin age at join days1,128
Committer age at join days224
Active installs10,000
View raw JSON
{
    "slug": "sensei-lms",
    "committer_slug": "nurguly",
    "committer_display_name": "nurguly (a11n)",
    "committer_employer": null,
    "committer_member_since": "2021-10-19",
    "committer_first_commit": "2022-05-31 14:01:11",
    "committer_commit_count": 4,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2019-04-28 21:25:46",
    "plugin_age_at_join_days": 1128,
    "committer_age_at_join_days": 224,
    "active_installs": 10000
}
Medium committer_younger_than_plugin Sensei LMS – Online Courses, Quizzes, & Learning Resolved · no_longer_matches 1d ago
Slugsensei-lms
Committer slugyscik8
Committer display namePeter Kiss (a11n)
Committer employer
Committer member since2020-05-13
Committer first commit2020-08-27 19:40:37
Committer commit count10
Plugin listed authorautomattic
Earliest plugin commit2019-04-28 21:25:46
Plugin age at join days486
Committer age at join days106
Active installs10,000
View raw JSON
{
    "slug": "sensei-lms",
    "committer_slug": "yscik8",
    "committer_display_name": "Peter Kiss (a11n)",
    "committer_employer": null,
    "committer_member_since": "2020-05-13",
    "committer_first_commit": "2020-08-27 19:40:37",
    "committer_commit_count": 10,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2019-04-28 21:25:46",
    "plugin_age_at_join_days": 486,
    "committer_age_at_join_days": 106,
    "active_installs": 10000
}
Medium committer_younger_than_plugin Action Scheduler Resolved · no_longer_matches 1d ago
Slugaction-scheduler
Committer slugalopezari
Committer display namealopezari
Committer employer
Committer member since2023-02-17
Committer first commit2023-10-11 18:25:12
Committer commit count1
Plugin listed authorautomattic
Earliest plugin commit2020-07-13 21:35:33
Plugin age at join days1,184
Committer age at join days236
Active installs20,000
View raw JSON
{
    "slug": "action-scheduler",
    "committer_slug": "alopezari",
    "committer_display_name": "alopezari",
    "committer_employer": null,
    "committer_member_since": "2023-02-17",
    "committer_first_commit": "2023-10-11 18:25:12",
    "committer_commit_count": 1,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2020-07-13 21:35:33",
    "plugin_age_at_join_days": 1184,
    "committer_age_at_join_days": 236,
    "active_installs": 20000
}
Medium committer_younger_than_plugin Action Scheduler Resolved · no_longer_matches 1d ago
Slugaction-scheduler
Committer slugnamanorg
Committer display nameNaman
Committer employer
Committer member since2024-05-16
Committer first commit2025-01-21 11:40:14
Committer commit count2
Plugin listed authorautomattic
Earliest plugin commit2020-07-13 21:35:33
Plugin age at join days1,652
Committer age at join days250
Active installs20,000
View raw JSON
{
    "slug": "action-scheduler",
    "committer_slug": "namanorg",
    "committer_display_name": "Naman",
    "committer_employer": null,
    "committer_member_since": "2024-05-16",
    "committer_first_commit": "2025-01-21 11:40:14",
    "committer_commit_count": 2,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2020-07-13 21:35:33",
    "plugin_age_at_join_days": 1652,
    "committer_age_at_join_days": 250,
    "active_installs": 20000
}
Medium committer_younger_than_plugin Jetpack CRM – Clients, Leads, Invoices, Billing, Email Marketing, & Automation Resolved · no_longer_matches 1d ago
Slugzero-bs-crm
Committer slugjetpackcrmdeploybot
Committer display namejetpackcrmdeploybot
Committer employer
Committer member since2020-07-10
Committer first commit2020-08-20 11:05:06
Committer commit count54
Plugin listed authorautomattic
Earliest plugin commit2016-06-18 00:35:16
Plugin age at join days1,524
Committer age at join days41
Active installs30,000
View raw JSON
{
    "slug": "zero-bs-crm",
    "committer_slug": "jetpackcrmdeploybot",
    "committer_display_name": "jetpackcrmdeploybot",
    "committer_employer": null,
    "committer_member_since": "2020-07-10",
    "committer_first_commit": "2020-08-20 11:05:06",
    "committer_commit_count": 54,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2016-06-18 00:35:16",
    "plugin_age_at_join_days": 1524,
    "committer_age_at_join_days": 41,
    "active_installs": 30000
}
Medium committer_younger_than_plugin Jetpack CRM – Clients, Leads, Invoices, Billing, Email Marketing, & Automation Resolved · no_longer_matches 1d ago
Slugzero-bs-crm
Committer slugzbsdeploymachine
Committer display namezbsdeploymachine
Committer employer
Committer member since2017-10-18
Committer first commit2017-10-18 15:48:39
Committer commit count26
Plugin listed authorautomattic
Earliest plugin commit2016-06-18 00:35:16
Plugin age at join days487
Committer age at join days0
Active installs30,000
View raw JSON
{
    "slug": "zero-bs-crm",
    "committer_slug": "zbsdeploymachine",
    "committer_display_name": "zbsdeploymachine",
    "committer_employer": null,
    "committer_member_since": "2017-10-18",
    "committer_first_commit": "2017-10-18 15:48:39",
    "committer_commit_count": 26,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2016-06-18 00:35:16",
    "plugin_age_at_join_days": 487,
    "committer_age_at_join_days": 0,
    "active_installs": 30000
}
Medium committer_younger_than_plugin WP Job Manager Resolved · no_longer_matches 1d ago
Slugwp-job-manager
Committer slugwpjobmanager
Committer display nameWP Job Manager
Committer employer
Committer member since2023-09-26
Committer first commit2023-10-05 14:47:29
Committer commit count8
Plugin listed authorautomattic
Earliest plugin commit2013-06-08 21:24:29
Plugin age at join days3,770
Committer age at join days9
Active installs80,000
View raw JSON
{
    "slug": "wp-job-manager",
    "committer_slug": "wpjobmanager",
    "committer_display_name": "WP Job Manager",
    "committer_employer": null,
    "committer_member_since": "2023-09-26",
    "committer_first_commit": "2023-10-05 14:47:29",
    "committer_commit_count": 8,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2013-06-08 21:24:29",
    "plugin_age_at_join_days": 3770,
    "committer_age_at_join_days": 9,
    "active_installs": 80000
}
Medium code_scan_delta WooCommerce Resolved · fp:overgeneric_ioc 2d ago
Slugwoocommerce
Previous version10.7.0
Current version10.7.0
New findings
PatternKindFileLineSnippetConfidence
add_footer_scriptioc:code_patternincludes/tracks/events/class-wc-admin-setup-wizard-tracking.php48public function add_footer_scripts() {medium
New finding count1
View raw JSON
{
    "slug": "woocommerce",
    "previous_version": "10.7.0",
    "current_version": "10.7.0",
    "new_findings": [
        {
            "pattern": "add_footer_script",
            "kind": "ioc:code_pattern",
            "file": "includes/tracks/events/class-wc-admin-setup-wizard-tracking.php",
            "line": 48,
            "snippet": "public function add_footer_scripts() {",
            "confidence": "medium"
        }
    ],
    "new_finding_count": 1
}
Medium committer_younger_than_plugin Jetpack VaultPress Resolved · benign_company_employee 5d ago
Slugvaultpress
Committer slugbenedictsinger
Committer display namebenedictsinger
Committer employer
Committer member since2015-10-15
Committer first commit2016-03-24 20:48:24
Committer commit count24
Plugin listed authorautomattic
Earliest plugin commit2013-06-24 20:07:20
Plugin age at join days1,004
Committer age at join days161
Active installs10,000
View raw JSON
{
    "slug": "vaultpress",
    "committer_slug": "benedictsinger",
    "committer_display_name": "benedictsinger",
    "committer_employer": null,
    "committer_member_since": "2015-10-15",
    "committer_first_commit": "2016-03-24 20:48:24",
    "committer_commit_count": 24,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2013-06-24 20:07:20",
    "plugin_age_at_join_days": 1004,
    "committer_age_at_join_days": 161,
    "active_installs": 10000
}
Medium committer_younger_than_plugin Sensei LMS – Online Courses, Quizzes, & Learning Resolved · benign_company_employee 5d ago
Slugsensei-lms
Committer sluggikaragia
Committer display nameGiannis
Committer employer
Committer member since2019-10-18
Committer first commit2020-04-27 14:52:50
Committer commit count12
Plugin listed authorautomattic
Earliest plugin commit2019-04-28 21:25:46
Plugin age at join days364
Committer age at join days192
Active installs10,000
View raw JSON
{
    "slug": "sensei-lms",
    "committer_slug": "gikaragia",
    "committer_display_name": "Giannis",
    "committer_employer": null,
    "committer_member_since": "2019-10-18",
    "committer_first_commit": "2020-04-27 14:52:50",
    "committer_commit_count": 12,
    "plugin_listed_author": "automattic",
    "earliest_plugin_commit": "2019-04-28 21:25:46",
    "plugin_age_at_join_days": 364,
    "committer_age_at_join_days": 192,
    "active_installs": 10000
}

Plugins authored (115)

Plugin Version Installs Last updated Status
WooCommerce ·woocommerce 10.7.0 7M+ 18d ago Active
Akismet Anti-spam: Spam Protection ·akismet 5.7 6M+ 8d ago Active
Jetpack – WP Security, Backup, Speed, & Growth ·jetpack 15.7.1 3M+ 15d ago Active
WP Super Cache ·wp-super-cache 3.1.0 1M+ 17d ago Active
WooCommerce Legacy REST API ·woocommerce-legacy-rest-api 1.0.5 400k+ 1y ago Active
Limit Login Attempts ·limit-login-attempts 1.7.2 300k+ 3y ago Active
Page Optimize ·page-optimize 0.6.2 200k+ 2mo ago Active
Crowdsignal Forms ·crowdsignal-forms 1.8.0 200k+ 2mo ago Active
Jetpack Boost – Website Speed, Performance and Critical CSS ·jetpack-boost 4.5.9 200k+ 19d ago Active
Layout Grid Block ·layout-grid 1.8.4 200k+ 2y ago Active
Crowdsignal Dashboard – Polls, Surveys & more ·polldaddy 3.1.5 100k+ 2mo ago Active
Jetpack Protect ·jetpack-protect 5.0.0 100k+ 21d ago Active
Gravatar Enhanced – Avatars, Profiles, and Privacy ·gravatar-enhanced 0.13.1 100k+ 1mo ago Active
WP Job Manager ·wp-job-manager 2.4.1 80k+ 11d ago Active
Jetpack CRM – Clients, Leads, Invoices, Billing, Email Marketing, & Automation ·zero-bs-crm 6.7.3 30k+ 2mo ago Active
Jetpack Social ·jetpack-social 8.0.1 30k+ 2mo ago Active
Action Scheduler ·action-scheduler 3.9.3 20k+ 9mo ago Active
Co-Authors Plus ·co-authors-plus 4.0.2 20k+ 2d ago Active
Jetpack VaultPress Backup ·jetpack-backup 3.8 20k+ 21d ago Active
Automattic For Agencies Client ·automattic-for-agencies-client 0.8.0 10k+ 21d ago Active
Rewrite Rules Inspector ·rewrite-rules-inspector 1.6.0 10k+ 3mo ago Active
Jetpack VaultPress ·vaultpress 4.0.7 10k+ 21d ago Active
Sensei LMS – Online Courses, Quizzes, & Learning ·sensei-lms 4.25.2 10k+ 4mo ago Active
Lazy Load ·lazy-load 0.6.1 10k+ 7y ago Active
Blaze Ads – Fully Integrated Ads Solution ·blaze-ads 0.9.0 7k+ 3mo ago Active
Jetpack VideoPress ·jetpack-videopress 3.0 7k+ 15d ago Active
ActivityPub ·activitypub 8.2.1 6k+ 1d ago Active
Edit Flow ·edit-flow 0.10.4 5k+ 8d ago Active
Jetpack Search ·jetpack-search 6.0.0 5k+ 21d ago Active
jQuery Lightbox For Native Galleries ·jquery-lightbox-for-native-galleries 3.2.2 5k+ 8y ago Active
Sensei LMS Certificates ·sensei-certificates 2.5.4 5k+ 4mo ago Active
Share a Draft ·shareadraft 1.5 3k+ 5y ago Active
Zone Manager (Zoninator) ·zoninator 0.11.0 2k+ 6d ago Active
Post Meta Inspector ·post-meta-inspector 1.1.1 2k+ 9y ago Active
Migrate to WordPress.com ·wpcom-migration 5.88 1k+ 12d ago Active
Newspack Newsletters ·newspack-newsletters 3.31.0 1k+ 16d ago Active
Event Block ·event 1.0.2 1k+ 2y ago Active
Liveblog ·liveblog 1.12.0 1k+ 4d ago Active
WordPress.com Editing Toolkit ·full-site-editing 4.30504 1k+ 1y ago Active
WP-Cron Control ·wp-cron-control 0.7.1 1k+ 8y ago Active
Monster Widget ·monster-widget 0.3 900 8y ago Active
Allow Numeric Slugs ·allow-numeric-stubs 3.0.0 900 10y ago Active
Batcache ·batcache 1.5 800 6y ago Active
Waves Block ·waves 1.0.2 800 3y ago Active
Clean Archives Reloaded ·clean-archives-reloaded 3.2.0 600 14y ago Active
Super Cool Ad Inserter Plugin ·super-cool-ad-inserter 0.7.3 600 8mo ago Active
IntenseDebate Comments ·intensedebate 2.10.2 500 3y ago Active
Adbusters ·adbusters 1.0.7 400 7y ago Active
Custom JavaScript Editor ·custom-javascript-editor 1.1 400 10y ago Active
Disable Trackbacks ·disable-trackbacks 1.0.0 200 17y ago Active
Safe Report Comments ·safe-report-comments 0.4.1 200 7y ago Active
Recent Comments ·recent-comments 2.1 200 5y ago Active
Republication Tracker Tool ·republication-tracker-tool 2.8.1-alpha.1 200 1mo ago Active
OpenID Connect Server ·openid-connect-server 2.0.0 100 1y ago Active
Remote Data Blocks ·remote-data-blocks 1.4.3 100 4mo ago Active
Sketch Block ·sketch 1.3.0 100 3y ago Active
WooCommerce Product Type Column ·woocommerce-product-type-column 1.0.0 100 5y ago Active
RSS Cloud ·rsscloud 0.5.0 100 3y ago Active
Pym.js Embeds ·pym-shortcode 1.3.2.4 90 6y ago Active
Push Syndication ·push-syndication 1.0 90 7y ago Active
Blocks Everywhere ·blocks-everywhere 1.21.0 50 2y ago Active
Ad Code Manager ·ad-code-manager 0.8.0 50 3mo ago Active
Starscape Block ·starscape 2.0.0 40 2y ago Active
Chatrix ·chatrix 0.9.2 20 1y ago Active
Posts List Block ·posts-list-block 1.1 10 6y ago Active
Disqus Comments Importer ·disqus-comments-importer 0.1 10 15y ago Active
Echo Comments Importer ·echo-comments-importer 0.1 10 15y ago Active
A8C 3D Model Viewer Block ·a8c-3d-model-viewer 1.0.0 10 3y ago Active
IntenseDebate Importer ·intensedebate-importer 0.1 10 15y ago Active
WordPress Download Counter ·wordpress-download-counter 1.0.2 10 16y ago Active
Document Feedback ·document-feedback 1.3 10 7y ago Active
Bauhaus Centenary Block ·bauhaus-centenary 1.0.3 10 3y ago Active
Ooyala ·ooyala-video-browser 3.1.0 10 6y ago Active
P2 Resolved Posts ·p2-resolved-posts 0.3.6 10 7y ago Active
HyperDB ·hyperdb 1.8 10 3y ago Active
Breadcrumb Titles For Pages ·page-breadcrumbs-for-wptitle 1.2.0 Closed
More To The Top ·more-to-the-top 1.1.0 Closed
WooCommerce Admin ·woocommerce-admin 3.3.2 Closed
Create Blockbase theme. ·create-blockbase-theme 0.0.1 Closed
Local Time ·localtime 1.2.1 Closed
Battlefield 2 Stats ·battlefield-2-stats 1.14 Closed
Newspack Newsletters THIS NEEDS A RENAME ·newspack 1.0.0 Closed
Developer ·developer 1.2.6 Closed
Disable Theme Preview ·disable-theme-preview 1.0.0 Closed
WooCommerce – ShipStation Integration ·woo-shipstation-integration 4.1.23 Closed
BBCode ·bbcode 1.0.2 Closed
Direct Image URLs For Galleries ·direct-image-urls-for-galleries 1.0.0 Closed
oohEmbed ·oohembed 1.0.0 Closed
BruteProtect ·bruteprotect 2.5 Closed
Sensei ·sensei 2.0.0 Closed
Sensei LMS Status and Tools ·sensei-lms-status-and-tools 1.0.1 Closed
Gutenberg Ramp ·gutenberg-ramp 1.1.0 Closed
Viper's Plugins Used ·vipers-plugins-used 1.12 Closed
Viper's Video Quicktags ·vipers-video-quicktags 6.6.0 Closed
Viper's Video Quicktags Migrator ·vipers-video-quicktags-migrator 1.2.2 Closed
Enable oEmbed Discovery ·enable-oembed-discovery 1.0.0 Closed
Eventbrite API ·eventbrite-api 1.0.12 Closed
Dashboard: Draft Posts ·dashboard-draft-posts 1.0.3 Closed
WooCommerce Blocks ·woo-gutenberg-products-block 11.7.0 Closed
Dashboard Fixer ·dashboard-fixer 1.0.1 Closed
In Their Language ·in-their-language 1.0.0 Closed
Dashboard: Latest Spam ·dashboard-latest-spam 1.0.4 Closed
Dashboard: Pending Review ·dashboard-pending-review 2.0.0 Closed
Wickett Twitter Widget ·wickett-twitter-widget 1.0.6 Closed
WordPress.com Theme Updater ·wordpresscom-theme-updates 1.0 Closed
Dashboard: Scheduled Posts ·dashboard-scheduled-posts 2.0.0 Closed
WordPress.org One-Click Install ·wordpressorg-one-click-install 1.2.2 Closed
Global Plugin Update Notice ·global-plugin-update-notice 1.1.1 Closed
Dashboard Widget Manager ·dashboard-widget-manager 1.3.1 Closed
WPhone ·wphone 1.5.3 Closed
Templatedia ·templatedia 1.0.0 Closed
Templatedia Chess ·templatedia-chess 1.0.0 Closed
Chili Code Highlighter ·chili-code-highlighter 1.0.0 Beta 2008.05.30 02:05 Closed
YOURLS: Short URL Widget ·yourls-shorturl-widget 1.1.0 Closed
Twitter Tools: bit.ly Links ·twitter-tools-bitly-links 1.1.2 Closed

SVN commit access (43)

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
WooPayments: Integrated WooCommerce Payments woocommerce 900k+ 199 6y ago 15d ago Active
WooCommerce Square woocommerce 80k+ 135 6y ago 26d ago Active
Meta for WooCommerce facebook 500k+ 102 5y ago 1y ago Active
WooCommerce Stripe Payment Gateway woocommerce 700k+ 80 5y ago 9mo ago Active
Pinterest for WooCommerce woocommerce 300k+ 78 4y ago 11d ago Active
Google Analytics for WooCommerce woocommerce 100k+ 55 5y ago 16d ago Active
WooCommerce Payfast Gateway woocommerce 30k+ 44 8y ago 25d ago Active
WooCommerce PayPal Payments woocommerce 800k+ 41 5y ago 4mo ago Active
Braintree for WooCommerce Payment Gateway woocommerce 10k+ 35 4y ago 9d ago Active
Amazon Pay for WooCommerce woocommerce 20k+ 25 4y ago 2y ago Active
Eway Payments for Woo woocommerce 3k+ 22 8y ago 2y ago Active
IntenseDebate Comments automattic 500 20 10y ago 3y ago Active
Edit Flow automattic 5k+ 18 10y ago 8d ago Active
Adbusters automattic 400 13 10y ago 7y ago Active
WooCommerce Analytics woocommerce 20k+ 12 1y ago 11d ago Active
Zone Manager (Zoninator) automattic 2k+ 12 10y ago 6d ago Active
Blaze Ads – Fully Integrated Ads Solution automattic 7k+ 11 1y ago 3mo ago Active
WooCommerce Gateway Affirm woocommerce 6k+ 7 2y ago 1y ago Active
Rewrite Rules Inspector automattic 10k+ 6 4y ago 3mo ago Active
Layout Grid Block automattic 200k+ 6 4y ago 3y ago Active
WordPress.com Editing Toolkit automattic 1k+ 6 2y ago 2y ago Active
ShipStation for WooCommerce woocommerce 30k+ 6 7y ago 6mo ago Active
WooCommerce Shipping woocommerce 70k+ 5 10mo ago 6mo ago Active
Liveblog automattic 1k+ 5 4y ago 4d ago Active
WooCommerce Accommodation Bookings woocommerce 1k+ 4 6mo ago 18d ago Active
Monster Widget automattic 900 4 13y ago 13y ago Active
Sensei LMS – Online Courses, Quizzes, & Learning automattic 10k+ 3 7y ago 7y ago Active
Jetpack VaultPress automattic 10k+ 2 12y ago 10y ago Active
Jetpack – WP Security, Backup, Speed, & Growth automattic 3M+ 2 18d ago 4d ago Active
Reddit for WooCommerce woocommerce 40k+ 2 3mo ago 3mo ago Active
Crowdsignal Dashboard – Polls, Surveys & more automattic 100k+ 2 1y ago 1y ago Active
WooCommerce Tax (formerly WooCommerce Shipping & Tax) woocommerce 600k+ 2 10mo ago 6mo ago Active
WP Job Manager automattic 80k+ 2 6y ago 6y ago Active
WooCommerce automattic 7M+ 2 8mo ago 8mo ago Active
Lazy Load automattic 10k+ 2 10y ago 7y ago Active
Custom JavaScript Editor automattic 400 1 10y ago 10y ago Active
Batcache automattic 800 1 10y ago 10y ago Active
Gravatar Enhanced – Avatars, Profiles, and Privacy automattic 100k+ 1 10y ago 10y ago Active
Jetpack VideoPress automattic 7k+ 1 15d ago 15d ago Active
Jetpack Protect automattic 100k+ 1 21d ago 21d ago Active
Co-Authors Plus automattic 20k+ 1 10y ago 2d ago Active
Post Meta Inspector automattic 2k+ 1 10y ago 10y ago Active
Google for WooCommerce woocommerce 900k+ 1 4y ago 3d ago Active

Contributor on other plugins (99)

Plugins where this account is listed in the readme contributors (distinct from SVN commit access).

Plugin Primary author Version Installs
Advanced Editor Tools azaozz 5.9.2 2M+
Google for WooCommerce woocommerce 3.6.2 900k+
WooPayments: Integrated WooCommerce Payments woocommerce 10.7.1 900k+
WooCommerce PayPal Payments woocommerce 4.0.3 800k+
WooCommerce Stripe Payment Gateway woocommerce 10.6.1 700k+
WooCommerce Tax (formerly WooCommerce Shipping & Tax) woocommerce 3.6.1 600k+
MailPoet – Newsletters, Email Marketing, and Automation mailpoet 5.24.0 500k+
AMP westonruter 2.5.5 400k+
Pinterest for WooCommerce woocommerce 1.4.26 300k+
TikTok tiktokbusinessplugin 1.4.0 200k+
WooSidebars woothemes 1.4.6 100k+
Google Analytics for WooCommerce woocommerce 2.1.23 100k+
WooCommerce Square woocommerce 5.3.2 80k+
WooCommerce Shipping woocommerce 2.3.0 70k+
Snapchat for WooCommerce woocommerce 1.0.2 40k+
Reddit for WooCommerce woocommerce 1.0.3 40k+
ShipStation for WooCommerce woocommerce 5.0.3 30k+
Klarna for WooCommerce klarnaplugin 4.10.5 30k+
WooCommerce Payfast Gateway woocommerce 1.7.6 30k+
SyntaxHighlighter Evolved viper007bond 3.7.2 20k+
Amazon Pay for WooCommerce woocommerce 2.6.1 20k+
PuSHPress josephscott 0.1.10 20k+
Cookies for Comments donncha 0.5.5 20k+
Klarna Order Management for WooCommerce klarnaplugin 1.11.0 10k+
WooCommerce Colors claudiosanches 1.0.7 10k+
WooCommerce Shortcodes claudiosanches 1.0.0 10k+
Kustom Checkout for WooCommerce partnerskustom 2.20.0 10k+
Braintree for WooCommerce Payment Gateway woocommerce 3.10.0 10k+
Homepage Control woothemes 2.0.3 9k+
Cloudinary – Deliver Images and Videos at Scale cloudinary 3.3.3 5k+
Storefront Product Sharing woocommerce 1.0.6 5k+
WooCommerce Product Dependencies woocommerce 2.0.1 3k+
Eway Payments for Woo woocommerce 3.9.2 3k+
Storefront Footer Bar woocommerce 1.0.4 3k+
Unfiltered MU donncha 1.3.1 2k+
Storefront Hamburger Menu woocommerce 1.2.2 2k+
GoCardless for WooCommerce gocardless 2.9.10 1k+
Storefront Homepage Contact Section woocommerce 1.0.5 1k+
RTL Tester yoavf 1.2 1k+
WooCommerce Accommodation Bookings woocommerce 1.3.8 1k+
Keyring beaulebens 3.0 1k+
Sensei LMS Post to Course Creator donnapep 1.2.1 1k+
Rename XMLRPC koke 1.1 1k+
WP LaTeX mdawaffe 1.9.3 700
Product Bundles – Variation Bundles woocommerce 2.0.2 600
Product Bundles – Bulk Discounts woocommerce 2.0.1 600
Email Post Changes mdawaffe 1.7.2 500
Geolocation frsh 1.9.7 400
Product Recommendations – Custom Locations woocommerce 2.0.4 300
WordPress.org Glossary tellyworth 1.2 300
PayPal Payment Buttons paypal 0.4.0 200
Gift Cards – Coupon Input woocommerce 2.0.1 200
Composite Products – Conditional Images woocommerce 2.0.2 200
PayPal Checkout Payment for WooCommerce in Japan artisan-workshop-1 2.0.3 100
Sharedaddy johnny5 0.2.13 100
AdControl derekspringer 1.5 100
WooCommerce PayPal Here Payment Gateway woocommerce 1.1.3 100
Posterous Importer briancolinger 0.10 90
Easy Custom Fields tott 0.6 60
Hidden Posts betzster 0.1 30
Book vcanales 0.1.0 10
Ice Visual Revisions nbachiyski 1.0-beta2 10
Net Neutrality ebinnion 1.0.2 10
Bulk User Management betzster 1.1 10
Remote API tott 0.2 10
WP Debug Logger donncha 0.1 10
Facebook facebook 1.5.5
SyncDukan inspurate 1.0
WooCommerce PayPal Checkout Payment Gateway woothemes 2.1.3
Payscript CryptoCheckout payscript 1.0.0
Instant Articles for WP wpcomvip 5.0.2
Tweet Tweet donncha 0.5.7
CampTix Event Ticketing kovshenin 1.7.0
WordPress MU Domain Mapping donncha 0.5.5.1
WordPress.com Custom CSS briancolinger 1.5
VideoPress josephscott 1.5.6
Flickr Comment Importer donncha 0.3
class-wp-importer briancolinger 0.6.1
Simple Post Filter chandrima1234 2.0.2
Vox Importer briancolinger 0.7
Grunion Contact Form mdawaffe 2.3
Debug-Bar-Extender tott 0.5
Storefront Product Pagination woothemes 1.2.4
WooCommerce Beta Tester mikejolley 2.1.0
Faux Facebook Connect tott 0.1
Sync Dukan with WC dukanpk 1.0
After the Deadline apeatling 0.49008
WooCommerce Quantity Increment captaintheme 1.1.0
RHK UPI Payment Gateway rhkshop 1.5
Flickr Blog This to Draft Post donncha 1.0
UPI Mobile Payment vhvcpr 1.0
CampTix Network Tools iandunn 0.2
Sensei LMS Course Progress donnapep 2.0.4
VIP Scanner batmoo 0.7
Gravatar Widget johnny5 1.0
Connect for WooCommerce woothemes 0.9.6
WordPress.com Stats andy 1.8.6
WooCommerce EligeBTC Payment Gateway ysilvela 1.6.4
HookPress mitchoyoshitaka 1.14