PHP Script demonstrating a smart honey pot.
- Download the latest release.
- Choose one of the forms: simple-form.php, hardened-form.php or bootstrap-form.php (simple-form.php is intended as a simple way to understand the script only. It is not intended for use in production.)
- Set the contants
- Set the $salt. I recomend http://www.sethcardoza.com/tools/random-password-generator/ as a quick tool to get some random stuff to put in there.
- Set $recipients to a comma seperated list of emails (as accepted by php mail function)
- Set $senderName. This will be included in the from address of the email.
- Set $sender. This is the email address where the form originates. Typically something like noreply@example.com.
- Set $subject. This is the email subject.
- Modify the form to include the fields you need.
action
defaults to the current script addressmethod
should remain set at post. Changing this will cause the form not to send emails.fields
is an array of inputs (and form elements) that you would like in your form.- You can use the following form elements:
text
,url
,email
,number
,phone
/tel
,checkbox
,file
,textarea
,select
, andsubmit
- The last form input should always be the
submit
.
- You can use the following form elements:
- Put the form on your server.
- Test the form. Because, you could break something when you set the above. This especially applies to the
fields
.
Every form element is expected to have a name
and id
. The script may throw errors if these values are not set.
The text based inputs allow you to set a placeholder
and default value
. I have tried to make these names intuitive and based on the HTML input attributes.
To make an element required, simply add required => true
.
Supports name
, id
, value
and placeholder
.
Supports name
, id
, value
and placeholder
.
Supports name
, id
, value
and placeholder
.
Supports name
, id
, value
and placeholder
.
Supports name
, id
, value
and placeholder
.
There is no validation on a phone number.
Synonym of phone. See above.
Supports name
, id
, and value
.
Supports name
and id
.
There is no validation on a file field. However, if you use a file file the enctype will be set on the form automatically.
Supports name
and id
and default value
. Does not currently support rows and cols.
Supports name
, id
, default value
. The default value
set on the select will be selected in the options array.
You can specify the options
as value => display array. The value will be used as the value on the option and the display will be shown to the end user.
In the hardened-form and the bootstrap-form, the script will ensure that the user submited a valid choice from the options.
Required final element.
Radio buttons are tricky to implement under this model due to the use of the same name across radios. They will be added at some point. Currently, using radio
will trigger and exception.
HTML5 added range as a possible input type. It appears to be pretty well supported accross browser. Having never used it or seen it in use on a website, I did not ad it to this script. Using range
will trigger and exception.
I last left off having written this script and getting to a good stopping point. I need to do some more testing.
I wrote some server side validation and would like to extend that to some client side validation. The hardened-form and bootstrap-form should both dynamically generate jQuery to validate the form client side.
There are references to bootstrap in the code and this readme. I plan to add a bootstrap-form script. It is dependent on testing the hardened-form and adding jQuery validation to the hardened-form.