Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Claude Schneegans
 >>Because robots typically read the form

Sure, I was just joking ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288991
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Dave Watts
> Ha ha, but where is the problem, since robots can't read 
> Javascript? ;-)

Robots can certainly read (and execute) JavaScript, if they're specifically
designed to do so. Most search engine crawlers don't execute JavaScript, but
there are some that can, such as Texis' Webinator product.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288980
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Rick Root
On 9/20/07, Claude Schneegans <[EMAIL PROTECTED]> wrote:
>  >>It's like implementing captcha, but validating the captcha key with
> javascript
>
> Ha ha, but where is the problem, since robots can't read Javascript? ;-)

That's exactly the problem.

Because robots typically read the form, and then submit the variables
directly to the action page.  The javascript is never executed, and
therefore if you're using javascript to validate the captcha, you'll
only be stopping people who have trouble reading the captcha!

Besides, if you're using javascript for this, then you've put the
captcha answer in the javascript.  There is a flaw in your sentence
above.  Robots *CAN* read javascript, they just can't execute
javascript.  So even if you're *ALSO* validating on the back-end, the
robot can just read the javascript source, figure out the captcha key,
and submit it correctly.


-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288979
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Robert Harrison
> WTF?  ?

Obviously you're not up to CF9 yet. Get with the program :-)


Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.




~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288972
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Claude Schneegans
 >>It's like implementing captcha, but validating the captcha key with 
javascript

Ha ha, but where is the problem, since robots can't read Javascript? ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288971
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Rick Root
Here's a WTF from a commenter on that site, by someone named "Ph33r my
5k1llz!" who claims to have done Coldfusion development for 1.5 years:

 is not in the article. Just as in every web application
you can use application and session variables to store similar kinds
of information. These are defined in the previously mentionnened
"application.cfm".
The first time the application is run the  tag is
checked and then every time a user logs on the  is checked.
So, normally this is more logic than using includes.

WTF?  ?

rick

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288956
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Rick Root
On 9/20/07, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote:
>
> (Clearly the issue isn't CF -- it's being stupid about security. REALLY 
> stupid.)

Hah, that's pretty damn funny.

It's like implementing captcha, but validating the captcha key with
javascript - meaning that you're actually put the captcha key into the
javascript code.

Only worse!

-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4