added filtering for bot known bot subject and textarea
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 49s

This commit is contained in:
Andreas Hnida 2024-05-13 11:22:26 +02:00
commit 7de49d32d3
2 changed files with 10 additions and 2 deletions

View file

@ -41,6 +41,11 @@ const textInputs = document.querySelectorAll('input[type="text"]')
const captcha = document.querySelectorAll('.captcha') const captcha = document.querySelectorAll('.captcha')
const captchaInput = document.querySelectorAll('.captcha-input') const captchaInput = document.querySelectorAll('.captcha-input')
const captchaVerifyButton = document.querySelectorAll('.captcha-verify') const captchaVerifyButton = document.querySelectorAll('.captcha-verify')
// Form fields
const subjectField = document.getElementById('subject')
const messageField = document.getElementById('description')
const botBadge = document.createElement('div') const botBadge = document.createElement('div')
if (debugEnabled) { if (debugEnabled) {
botBadge.className = 'bot-badge' botBadge.className = 'bot-badge'
@ -112,6 +117,9 @@ function validateZSRNumber(form) {
function checkForBotBehavior() { function checkForBotBehavior() {
let timeSpent = (Date.now() - startTime) / 1000 let timeSpent = (Date.now() - startTime) / 1000
botDetected = botDetected =
subjectField.value === "I promised." ||
// or if messageField Has string "Hi, this is" in it
messageField.value.startsWith("Hi, this is") ||
!userInteracted || !userInteracted ||
interactionCount === 0 || interactionCount === 0 ||
timeSpent < interactionThreshold || timeSpent < interactionThreshold ||

View file

@ -1,5 +1,5 @@
// Configuration and Messages // Configuration and Messages
const debugEnabled = true const debugEnabled = false
const mouseDebugEnabled = false const mouseDebugEnabled = false
const zsrCheckEnabled = false const zsrCheckEnabled = false
const interactionThreshold = 15 // Time in seconds const interactionThreshold = 15 // Time in seconds