- Issue was unassigned.
- Status changed to Needs work
3 months ago 9:21pm 21 December 2024
The honeypot hidden field has a fixed title "Leave this field blank" which make it recognizable by bots.
Make the title more dynamic (even randomize it)
* Option 1: add:
function _honeypot_get_field_title() {
$operations = ['+', '-', '*', '/'];
$output = implode(' ', [rand(1,99), $operations[rand(0,3)], rand(1,99), '= ?']);
return $output; // Example output: 4 * 57 = ?
}
* Option 2: use Random::name
* Option 3: use Random::word
Per #3154557-30: Randomize the honeypot hidden field title β :
Needs review
2.2
Code
The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.