Sometimes I wonder if there was a real person on the other end writing code to combat the code I was writing at the same time, and finally gave up on the 3rd iteration.
You probably don’t need ReCAPTCHA
81–90 of 246 posts
Re: You probably don’t need ReCAPTCHA
#82EDIT: I now see the article does actually mention this, though I still do wonder how far the fingerprinting goes.
Re: You probably don’t need ReCAPTCHA
#83Earlier quoted context omitted.
They are definitely an issue for accessibility. I make sure to put "Hey! Don't put anything in this field!" as a placeholder.
That sounds like something bots could easily adapt to if the practice become widespread.
Re: You probably don’t need ReCAPTCHA
#84"Many developers vastly over-estimate the likelihood of customized spam." I run 100s of small random low traffic low priority sites. Without some form of form control, the ALL get hit with customized and random other crap spam. I don't have decent experience with many things in life, but I can say this is one topic I have YEARS of experience with. I've never over-estimated the amount of any type of spam any form can…
Re: You probably don’t need ReCAPTCHA
#85Re: You probably don’t need ReCAPTCHA
#86Earlier quoted context omitted.
Did you try randomizing the 'name' and 'ids' of the inputs? (including the invisible one)
I was preparing a response here, but many of the other commenters have covered it. I recently spent time ensuring our Auth pages’ HTML could be easily cached outside of our application servers. They were a common target of DDOS attacks because we were generating a unique nonce for CSRF protection. Randomizing form field names does not defeat a targeted attacker (and we have definitely been a target), prevents HTML ca…
I would MUCH prefer the recaptcha over this!
Re: You probably don’t need ReCAPTCHA
#87I fought an interesting implementation of customized spam on a web app registration form a few months back. Suddenly, every 2-3 seconds, we would get a sign up from a random email address @qq.com (it really clogged our sign up Slack channel). I didn’t want to go full CAPTCHA so I dropped in a simple honeypot and the spam stopped for a good 4-5 hours. Then it picked right back up like normal. I then implemented a rand…
Re: You probably don’t need ReCAPTCHA
#88Earlier quoted context omitted.
It will also ignore people who use browser's autofill form function. Realized this after receiving a dozen complaints.
You can randomly generate the "name" of the fields and autofill will never fill them, another option to disable autocomplete is to leave them without "name" and handling the submit using JavaScript.
Re: You probably don’t need ReCAPTCHA
#89there were a couple of feints as if he were about to get to the content, then ha! back to diatribe.
Re: You probably don’t need ReCAPTCHA
#90Earlier quoted context omitted.
Did you try randomizing the 'name' and 'ids' of the inputs? (including the invisible one)
I was preparing a response here, but many of the other commenters have covered it. I recently spent time ensuring our Auth pages’ HTML could be easily cached outside of our application servers. They were a common target of DDOS attacks because we were generating a unique nonce for CSRF protection. Randomizing form field names does not defeat a targeted attacker (and we have definitely been a target), prevents HTML ca…
I wholly agree that this would not help, but for the sake of completeness, I want to point out that [0] is designed to solve this, by decoupling input field names from their intent.
But Chrome is playing dumb about it [1]. And of course, the spambots will just adapt to parse the autocomplete info…
[0]: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes...
[1]: https://www.reddit.com/r/programming/comments/ar1qj1/chromiu...