FormLift for Keap (Legacy) Web Forms

Import Keap Web Forms into WordPress and easily customize their style. Display with short-codes.

v7.6Adrian TobeyUpdated Added 400 installs92% rating
30
Score
162
Errors
315
Warnings
+0
Change

Category Scores

Security0
Repo97
Performance100
Maintainability27

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

477 findings

Security

317

11 issue groups

Maintainability

89

11 issue groups

I18n

51

3 issue groups

WARNINGSecurityRequest data is not unslashed$_COOKIE['FORMLIFT_ID'] not unslashed before sanitization. Use wp_unslash() or similar60
Category
Security
Occurrences
60
Severity
warning

Sample message

$_COOKIE['FORMLIFT_ID'] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.56
Category
Security
Occurrences
56
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<option value='$id'>$name</option>"'.54
Category
Security
Occurrences
54
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<option value='$id'>$name</option>"'.

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET[&#039;formlift_session&#039;]50
Category
Security
Occurrences
50
Severity
warning

Sample message

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

WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET[&#039;code&#039;]. Check that the array index exists before using it.36
Category
Security
Occurrences
36
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET[&#039;code&#039;]. Check that the array index exists before using it.

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

Sample message

Processing form data without nonce verification.

ERRORI18nText Domain MismatchMismatched text domain. Expected 'formlift' but got 'campaign_domain'.25
Category
I18n
Occurrences
25
Severity
error

Sample message

Mismatched text domain. Expected 'formlift' but got 'campaign_domain'.

ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().22
Category
I18n
Occurrences
22
Severity
error

Sample message

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

ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.20
Category
Maintainability
Occurrences
20
Severity
error

Sample message

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

WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb-&gt;prepare(); found interpolated variable $date1 at \tFROM $table_name WHERE time &gt;= &#039;$date1&#039; AND time &lt;= &#039;$date2&#039; AND form_id = $form_id\n19
Category
Security
Occurrences
19
Severity
warning

Sample message

Use placeholders and $wpdb-&gt;prepare(); found interpolated variable $date1 at \tFROM $table_name WHERE time &gt;= &#039;$date1&#039; AND time &lt;= &#039;$date2&#039; AND form_id = $form_id\n

Show 15 more
WARNINGMaintainabilityDirect Query16
Category
Maintainability
Occurrences
16
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo Caching13
Category
Maintainability
Occurrences
13
Severity
warning

Sample message

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

WARNINGMaintainabilityNon-prefixed function10
Category
Maintainability
Occurrences
10
Severity
warning

Sample message

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

WARNINGMaintainabilityNot In Footer7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.

ERRORMaintainabilityMissing direct file access protection7
Category
Maintainability
Occurrences
7
Severity
error

Sample message

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

WARNINGMaintainabilityNon-prefixed hook name5
Category
Maintainability
Occurrences
5
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;edd_sl_api_request_verify_ssl&quot;.

ERRORSecurityDatabase parameter is not escaped4
Category
Security
Occurrences
4
Severity
error

Sample message

Unescaped parameter $date1 used in $wpdb->get_var()\n$date1 used without escaping.

ERRORSecurityQuoted Simple Placeholder4
Category
Security
Occurrences
4
Severity
error

Sample message

Simple placeholders should not be quoted in the query string in $wpdb->prepare(). Found: '%s'.

ERRORSecurityUnsafe printing function4
Category
Security
Occurrences
4
Severity
error

Sample message

All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.

ERRORI18nMissing Translators Comment4
Category
I18n
Occurrences
4
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.

WARNINGMaintainabilityNon-prefixed constant3
Category
Maintainability
Occurrences
3
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;FL_SAMPLE_ID&quot;.

WARNINGSecuritywp redirect wp redirect3
Category
Security
Occurrences
3
Severity
warning

Sample message

wp_redirect() found. Using wp_safe_redirect(), along with the &quot;allowed_redirect_hosts&quot; filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.

ERRORMaintainabilityfile system operations fclose3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().

ERRORMaintainabilityfile system operations fputs3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fputs().

WARNINGMaintainabilitySchema Change2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Attempting a database schema change is discouraged.

External Connections

Potential connections found in static code analysis.

12 domains

Outbound calls

31

External assets

2

Incoming endpoints

7

Notable Domains

formlift.net17 · outbound
webhook.site2 · outbound
api.jqueryui.com1 · outbound
geoplugin.net1 · outbound

Platform / Reference Domains

github.com2 · platform/reference
s.w.org1 · platform/reference
wordpress.org1 · platform/reference

External Asset Domains

code.jquery.com1 · asset

Incoming Endpoints

wp_ajax_nopriv_formlift_submit_formpublic

wp_ajax

Admin AJAX endpoints6
wp_ajax_dismiss_formlift_noticeauthenticated

wp_ajax

wp_ajax_formlift_get_field_htmlauthenticated

wp_ajax

wp_ajax_formlift_get_leaderboard_rankingauthenticated

wp_ajax

wp_ajax_formlift_get_option_htmlauthenticated

wp_ajax

wp_ajax_formlift_groundhogg_remote_installauthenticated

wp_ajax

wp_ajax_formlift_submit_formauthenticated

wp_ajax

Score History

First score snapshot

v7.6

30

Latest

Findings
477
Errors
162
Warnings
315
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

37 nodes

Related Plugins

Contact Form Query

1k+ active installs

100
Extend Link

1k+ active installs

100
Admin Robots.txt Editor

400 active installs

99
Advanced Classic Editor

2k+ active installs

99
Advanced Popups

60k+ active installs

99