توضیحات
EDZNET Honeypot & Timing Guard protects Contact Form 7 forms from bot submissions using three complementary techniques:
Honeypot
A real text input is rendered off-screen (hidden via CSS positioning, not display:none). Bots that fill in visible form fields will often fill this one too, while human visitors never see it.
Timing Guard
A signed timestamp is injected into each form. Submissions arriving faster than the configured minimum time (default: 3 seconds) are rejected as bots. The timestamp is HMAC-signed with your site’s secret key, preventing tampering.
Gibberish Content Detection
The plugin analyses every submitted field (except internal and honeypot fields) for random-looking content — long character strings without spaces, words mixing letters and digits, or vowel-less letter sequences. Bots that fill forms with random noise are caught here.
When spam is detected, CF7 silently drops the mail and logs the reason to its spam log.
No configuration required — just install and activate.
نصب
- Upload the
edznet-honeypot-timing-guardfolder to/wp-content/plugins/. - Activate the plugin through the Plugins screen in WordPress.
- Contact Form 7 forms are now protected.
سوالات متداول
-
Can I change the minimum submit time?
-
Yes. Add this to your theme’s
functions.php:add_filter( 'edz_hp_min_seconds', fn() => 5 ); -
Can I require the timestamp field?
-
By default, forms cached before the plugin was activated won’t have a timestamp. Set the filter to
trueonce your cache has rolled over:add_filter( 'edz_hp_require_timestamp', '__return_true' );
نقد و بررسیها
نقد و بررسیای برای این افزونه یافت نشد.
توسعه دهندگان و همکاران
“EDZNET Honeypot & Timing Guard” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کردهاند.
مشارکت کنندگانترجمه “EDZNET Honeypot & Timing Guard” به زبان شما.
علاقه مند به توسعه هستید؟
کد را مرور کنید، مخزن SVN را بررسی کنید، یا از طریق RSS در گزارش توسعه مشترک شوید.
گزارش تغییرات
1.1.1
- Bumped Tested up to: 7.1 for WordPress 7.1 compatibility. No functional changes.
1.1.0
- Added gibberish content detection: flags message/subject fields containing random-looking text (long random strings, mixed letters & digits, vowel-less sequences).
- Added
edz_hp_check_gibberishfilter to disable the gibberish check (add_filter( 'edz_hp_check_gibberish', '__return_false' )). - Added
edz_hp_gibberish_fieldsfilter to customize which fields are checked.
1.0.0
- Initial release.