473,405 Members | 2,445 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Javascript & Captcha

I noticed a lot of sites that do sign ups in Javascript seem to skip the
Captcha part. I just want to know...is it that safe or am I missing
something?
Oct 15 '08 #1
9 4728
On Oct 15, 11:38*am, "Daniel Kaplan" <NoS...@NoSpam.comwrote:
I noticed a lot of sites that do sign ups in Javascript seem to skip the
Captcha part. *I just want to know...is it that safe or am I missing
something?
You are missing the explanation of what you actually want...
Oct 15 '08 #2

"GArlington" <ga********@tiscali.co.ukwrote in message
news:85**********************************@s20g2000 prd.googlegroups.com...
On Oct 15, 11:38 am, "Daniel Kaplan" <NoS...@NoSpam.comwrote:
I noticed a lot of sites that do sign ups in Javascript seem to skip the
Captcha part. I just want to know...is it that safe or am I missing
something?
You are missing the explanation of what you actually want...

What I meant was...does doing a "sign up" or "register" routine via
Javascript somehow circumvent the need for using a CAPTCHA? I would think
no. But so many sites seem to be going that route.
Oct 15 '08 #3
On Oct 15, 12:02*pm, "Daniel Kaplan" <NoS...@NoSpam.comwrote:
"GArlington" <garling...@tiscali.co.ukwrote in message

news:85**********************************@s20g2000 prd.googlegroups.com...
On Oct 15, 11:38 am, "Daniel Kaplan" <NoS...@NoSpam.comwrote:
I noticed a lot of sites that do sign ups in Javascript seem to skip the
Captcha part. I just want to know...is it that safe or am I missing
something?

You are missing the explanation of what you actually want...

What I meant was...does doing a "sign up" or "register" routine via
Javascript somehow circumvent the need for using a CAPTCHA? *I would think
no. *But so many sites seem to be going that route.
Hi, you can also do a CAPTCHA in JavaScript...like this one >>
http://cylo.co.uk/CAPTCHA.html

Graham
Oct 15 '08 #4
Daniel Kaplan meinte:
What I meant was...does doing a "sign up" or "register" routine via
Javascript somehow circumvent the need for using a CAPTCHA? I would think
no. But so many sites seem to be going that route.
Why would you need a captcha for "sign up" or "register" at all? Apart
from annoying the visitors of your webpage.
Gregor

--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Oct 15 '08 #5
On Oct 15, 1:57*pm, Gregor Kofler <use...@gregorkofler.atwrote:
Daniel Kaplan meinte:
What I meant was...does doing a "sign up" or "register" routine via
Javascript somehow circumvent the need for using a CAPTCHA? *I would think
no. *But so many sites seem to be going that route.

Why would you need a captcha for "sign up" or "register" at all? Apart
from annoying the visitors of your webpage.

Gregor

--http://photo.gregorkofler.at::: Landschafts- und Reisefotografiehttp://web.gregorkofler.com*::: meine JS-Spielwiesehttp://www.image2d.com* ** ::: Bildagentur für den alpinen Raum
Bots of course, DOH!
Oct 15 '08 #6
In comp.lang.javascript message <SW*************@nntpserver.swip.net>,
Wed, 15 Oct 2008 14:57:56, Gregor Kofler <us****@gregorkofler.at>
posted:
>
Why would you need a captcha for "sign up" or "register" at all? Apart
from annoying the visitors of your webpage.
As a general remark : I find that which Google sometimes gives is often
hard to get right, whereas that which Wikipedia gives when a new URL is
entered in an article is easy to read. Presumably both are sufficiently
effective. I don't know whether, technically, they count as CAPCHAs.
SAM, Lasse, Martin might get different Wiki ones.

The Google one annoys me; the Wiki one does not.

--
(c) John Stockton, nr London, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME.
Web <URL:http://www.merlyn.demon.co.uk/- FAQqish topics, acronyms & links;
Astro stuff via astron-1.htm, gravity0.htm ; quotings.htm, pascal.htm, etc.
No Encoding. Quotes before replies. Snip well. Write clearly. Don't Mail News.
Oct 15 '08 #7
Dr J R Stockton wrote:
Gregor Kofler posted:
>Why would you need a captcha for "sign up" or "register" at all? Apart
from annoying the visitors of your webpage.

As a general remark : I find that which Google sometimes gives is often
hard to get right, whereas that which Wikipedia gives when a new URL is
entered in an article is easy to read. Presumably both are sufficiently
effective. I don't know whether, technically, they count as CAPCHAs.
Criteria for whether something counts as a *CAPTCHA* can be derived from the
meaning of the acronym: Completely Automated Public Turing test to tell
Computers and Humans Apart. Insofar any representation that is hard to
guess by a(n OCR) program counts as a CAPTCHA -- although the concept itself
is evidently flawed.

See also <http://en.wikipedia.org/wiki/CAPTCHA>
HTH

PointedEars
--
var bugRiddenCrashPronePieceOfJunk = (
navigator.userAgent.indexOf('MSIE 5') != -1
&& navigator.userAgent.indexOf('Mac') != -1
) // Plone, register_function.js:16
Oct 15 '08 #8
Laser Lips meinte:
Check out my captcha to see a new concept of captch http://cylo.co.uk/CAPTCHA.html
Interesting. However, pitfalls like lack of activated JS or JS
compatibility remain.
>>* there are much less annyoing techniques, which are equally effective
Yeah I would agree with this too, ok point taken
A combination of honeypots, randomly generated field names, verification
via session variables, some simple content analysis (one could go for a
serious bayesian approach), a minimum time between delivery and
submission (no one fills out forms in 5 seconds).

All these measures are completely "invisible" and need no client-side
scripts.

Gregor
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Oct 16 '08 #9
On Oct 16, 12:18*am, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
Dr J R Stockton wrote:
As a general remark : I find that which Google sometimes gives is often
hard to get right, whereas that which Wikipedia gives when a new URL is
entered in an article is easy to read. *Presumably both are sufficiently
effective. *I don't know whether, technically, they count as CAPCHAs.

Criteria for whether something counts as a *CAPTCHA* can ...
HTH
An impressively pointless response from the pointed one. Had I wanted
to know, or had it mattered, I would have looked it up. ISTM that you
behave like a badly-programmed AI - you really should see a good
psychiatrist or craniotomist.

--
(c) John Stockton, near London, UK. Posting with Google.
Mail: J.R.""""""""@physics.org or (better) via Home Page at
Web: <URL:http://www.merlyn.demon.co.uk/>
FAQish topics, acronyms, links, etc.; Date, Delphi, JavaScript, ....|
Oct 16 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Krishna Kumar | last post by:
Hai all, I am doing a project in .net and in that project I have a problem in capturing text from an image. i.e images like CAPTCHA images . which has inbuilt text with in the image.So,...
12
by: Francois Bonzon | last post by:
After a Google search, I see that quite a few CAPTCHA implementations in PHP are available. I'd like one that's not (easily) OCR-able, or otherwise crackable. Open source or commercial is not...
12
by: pittendrigh | last post by:
Let's say we're trying to keep blog and forum spammers out of our site--we're not trying to protect fort knox. 1) Step one is a one-time-only step. We create six different css files that define...
4
by: xeiter | last post by:
Hi, I have a captcha script on my website located at /captcha.php. What it does it generates an image with the code, displays the image (gd2) and saves the value of the code in session. How do I...
4
by: Tem | last post by:
Does anyone know where I can find a good and easy to understand sample or tutorial of captcha validation for asp.net? (with source code not something like recaptcha) the ones I found are too...
11
by: Twayne | last post by:
Hi, Learning PHP code; playing with various methods of generating captcha codes: In the code below, how would I change the size of the text displayed in the captcha code? Is it even possible...
4
by: Jeigh | last post by:
My host has been 'upgrading' lately and its caused me a whole mess of problems. The last of which being that my CAPTCHA form no longer works. I remember to get the CAPTCHA working it took me weeks to...
7
by: =?Utf-8?B?bWF0dCBw?= | last post by:
Steve Orr has a neat Captcha control: http://steveorr.net/articles/CAPTCHASP.aspx but aside from "dragging the control onto your toolbox.." Does anyone have any installation instructions: e.g....
15
by: sb5309 | last post by:
When one uses CAPTCHA (form with verification code), a session is required to keep the session data. In examples that I have seen on the net, I did not see a session is closed after use. ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.