Shofy - eCommerce & Multivendor Marketplace Laravel Platform - Biggest Offer! Only $59 - Get it here!
Honeypot

Honeypot

Preventing spam submitted through forms

Version

1.0.2

Botble Version

>= 7.2.6

Downloads

59

License

MIT

Honeypot - Preventing spam submitted through forms

When adding a form to a public site, there's a risk that spam bots will try to submit it with fake values. Luckily, the majority of these bots are pretty dumb. You can thwart most of them by adding an invisible field to your form that should never contain a value when submitted. Such a field is called a honeypot. These spam bots will just fill all fields, including the honeypot.

When a submission comes in with a filled honeypot field, this package will discard that request. On top of that this package also checks how long it took to submit the form. This is done using a timestamp in another invisible field. If the form was submitted in a ridiculously short time, the anti spam will also be triggered.

Refs: spatie/laravel-honeypot

Requirements

  • Botble core 7.2.6 or higher.

Installation

Install via Admin Panel

Go to the Admin Panel and click on the Plugins tab. Click on the "Add new" button, find the Honeypot plugin and click on the "Install" button.

Install manually

  1. Download the plugin from the Botble Marketplace.
  2. Extract the downloaded file and upload the extracted folder to the platform/plugins directory.
  3. Go to Admin > Plugins and click on the Activate button.

Usages

Via Front Forms

  1. FormFront::class will automatically add the honeypot field to your form. You don't have to do anything. Your form must be extended FormFront::class.
  2. Go to the Admin -> Settings -> Honeypot -> Enable Honeypot and your front forms.

Manually

  1. Render the Honeypot field into your form by:
{!! apply_filters('form_extra_fields_render', null) !!}
  1. Validate the Honeypot field in your controller by:
use Botble\Support\Http\Requests\Request;

...

public function store(Request $request)
{
    do_action('form_extra_fields_validate', $request);
}
  1. Go to the Admin -> Settings -> Honeypot -> Enable Honeypot.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Kindly log in to share your feedback on this plugin.