AutomatorWP – Automator plugin for no-code automations, webhooks & custom integrations in WordPress

Connect your WordPress plugins, sites & apps together to create automated workflows with the most powerful no-code automator plugin!

v5.7.9.2Ruben GarciaUpdated Added 7k+ installs96% rating100% support resolved
24
Score
1,705
Errors
1,393
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

3,098 findings

Security

1,273

11 issue groups

Maintainability

883

11 issue groups

I18n

831

3 issue groups

ERRORI18nText Domain MismatchMismatched text domain. Expected 'automatorwp' but got 'autoamtorwp'.468
Category
I18n
Occurrences
468
Severity
error

Sample message

Mismatched text domain. Expected 'automatorwp' but got 'autoamtorwp'.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$title</label>\n"'.463
Category
Security
Occurrences
463
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$title</label>\n"'.

ERRORI18nMissing Translators CommentA function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.239
Category
I18n
Occurrences
239
Severity
error

Sample message

A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.

WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb-&gt;prepare(); found interpolated variable $id_list at &quot;SELECT {$primary_key}, meta_key, meta_value FROM {$meta_table_name} WHERE {$primary_key} IN ($id_list) ORDER BY {$meta_primary_key} ASC&quot;171
Category
Security
Occurrences
171
Severity
warning

Sample message

Use placeholders and $wpdb-&gt;prepare(); found interpolated variable $id_list at &quot;SELECT {$primary_key}, meta_key, meta_value FROM {$meta_table_name} WHERE {$primary_key} IN ($id_list) ORDER BY {$meta_primary_key} ASC&quot;

WARNINGSecurityRequest data is not unslashed$_GET[$field_id] not unslashed before sanitization. Use wp_unslash() or similar153
Category
Security
Occurrences
153
Severity
warning

Sample message

$_GET[$field_id] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;&#039;add_meta_boxes_&#039; . self::$props[ $this-&gt;id ][&#039;hook&#039;]&quot;.148
Category
Maintainability
Occurrences
148
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;&#039;add_meta_boxes_&#039; . self::$props[ $this-&gt;id ][&#039;hook&#039;]&quot;.

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.137
Category
Security
Occurrences
137
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;134
Category
Maintainability
Occurrences
134
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.132
Category
Maintainability
Occurrences
132
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().126
Category
Maintainability
Occurrences
126
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

Show 15 more
ERRORI18nMissing Arg Domain124
Category
I18n
Occurrences
124
Severity
error

Sample message

Missing $domain parameter in function call to __().

WARNINGMaintainabilityNon-prefixed function91
Category
Maintainability
Occurrences
91
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;CT_Ajax_List_Table&quot;.

ERRORMaintainabilitydate date82
Category
Maintainability
Occurrences
82
Severity
error

Sample message

date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.

WARNINGSecurityInput is not sanitized81
Category
Security
Occurrences
81
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_GET[&#039;automatorwp-action&#039;]

ERRORSecurityUnsafe printing function68
Category
Security
Occurrences
68
Severity
error

Sample message

All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.

WARNINGSecurityDatabase parameter is not escaped59
Category
Security
Occurrences
59
Severity
warning

Sample message

Unescaped parameter $actions_meta used in $wpdb-&gt;get_var()\n$actions_meta assigned unsafely at line 113.

WARNINGMaintainabilityslow db query meta key45
Category
Maintainability
Occurrences
45
Severity
warning

Sample message

Detected usage of meta_key, possible slow query.

WARNINGMaintainabilityslow db query meta value44
Category
Maintainability
Occurrences
44
Severity
warning

Sample message

Detected usage of meta_value, possible slow query.

WARNINGSecurityInput is not validated41
Category
Security
Occurrences
41
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET[$primary_key]. Check that the array index exists before using it.

WARNINGMaintainabilityNon-prefixed global variable40
Category
Maintainability
Occurrences
40
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$ct_ajax_list_items_per_page&quot;.

WARNINGSecurityMissing nonce verification37
Category
Security
Occurrences
37
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecuritySQL query is not prepared32
Category
Security
Occurrences
32
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found !==

ERRORSecurityDatabase parameter is not escaped31
Category
Security
Occurrences
31
Severity
error

Sample message

Unescaped parameter $automations_meta used in $wpdb->get_results()\n$automations_meta assigned unsafely at line 117.

WARNINGMaintainabilityNon-prefixed class22
Category
Maintainability
Occurrences
22
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;CMB_EDD_SL_Plugin_Updater&quot;.

ERRORMaintainabilitywp function not compatible with requires wp19
Category
Maintainability
Occurrences
19
Severity
error

Sample message

Function "apply_filters_deprecated()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.4.0.

Score History

First score snapshot

v5.7.9.2

24

Latest

Findings
3,098
Errors
1,705
Warnings
1,393
Check
2.0.0

Related Plugins