Re: Hiding Info In View Source

2002-06-12 Thread Jochem van Dieten

Double Down wrote:
> Does anyone know of a way to hide some form fields in the view source
> code?

http://continue.to/hope/

Jochem

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-12 Thread Neil Clark - =TMM=

ROFL.

Briliant :-)














-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]] 
Sent: 12 June 2002 06:01
To: CF-Talk
Subject: Re: Hiding Info In View Source

http://www.vortex-webdesign.com/help/hidesource.htm

Point 9 from the list above is the best solution :-)

Massimo


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Stacy Young

No can do...maybe look into encrypting url parameters?

-Original Message-
From: Double Down [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 1:55 PM
To: CF-Talk
Subject: Hiding Info In View Source

Does anyone know of a way to hide some form fields in the view source
code?
 
TIA
 
DDINC
 



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hiding Info In View Source

2002-06-11 Thread Massimo, Tiziana e Federica

http://www.vortex-webdesign.com/help/hidesource.htm

Point 9 from the list above is the best solution :-)

Massimo

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hiding Info In View Source

2002-06-11 Thread Justin Scott

> I wonder why Microsoft and/or Netscape hasn't come out with a tag that
would
> disable the view source option.

With Microsoft, I don't think they do anything unless it will help them gain
market share.  In any case, 90% of your users don't care about the source
code anyway, and of the remaining 10% that might want to have a peek, most
of them probably know how to ask the server directly, defeating the purpose.

If anyone is thinking they need to hide something in the source code, they
should ask themselves..

1. Is my code really SO good that it needs to be protected?

If this is the case, you probably know a back-end language like ColdFusion
already, so the logic should be moved there.

2. Is the data contained in the code REALLY so important it needs to be
hidden?

If this is the case, why are you sending "valuable" data to the client to
begin with?  If you're passing it between pages, encrypt it before moving it
to the client or consider storing it on the server and sending a pointer to
the client.

I'm truly amazed and how often this comes up.

-Justin Scott, Lead Developer
 Sceiron Internet Services, Inc.
 http://www.sceiron.com


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Shawn Grover

If you are just trying to hide values, then you can put them in Session or
Client vars.  This way, you don't have to pass them at all, yet still have
access to the values.  But, you do have to get the values to the server
somehow in the first place.  Maybe a blank, hidden IFrame, then set the
source of the IFrame in JS Code, specifiying the values as URL Parameters.
Unless of course your values are coming from a database, in which case the
page never really needs to seem them.  (shooting in the dark here, not quite
sure what your requirements are)

HTH

Shawn Grover

-Original Message-
From: Justin Greene [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 12:25 PM
To: CF-Talk
Subject: RE: Hiding Info In View Source


You cannot block the ability for someone determined to view your source, you
can only make it difficult.  I can telnet into the server and get the raw
html regardless of how much munging you do to the file and if you use
javascript to encrypt the file, I can write a routine to unencrypt the
javascript and so on and so forth...  You can make it tough, but not
impossible.

Justin

> -Original Message-
> From: Jim Vosika [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 10, 2002 2:15 PM
> To: CF-Talk
> Subject: RE: Hiding Info In View Source
> 
> External javascript files maybe...
> 
> Jim
> 
> -Original Message-
> From: Double Down [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, June 11, 2002 12:55 PM
> To: CF-Talk
> Subject: Hiding Info In View Source
> 
> Does anyone know of a way to hide some form fields in the view source
> code?
>  
> TIA
>  
> DDINC
>  
> 
> 
> 
> 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Brad Roberts

I wonder why Microsoft and/or Netscape hasn't come out with a tag that would
disable the view source option.

 -Original Message-
> From: Justin Greene [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 11, 2002 2:25 PM
> To: CF-Talk
> Subject: RE: Hiding Info In View Source
>
>
> You cannot block the ability for someone determined to view your
> source, you
> can only make it difficult.  I can telnet into the server and get the raw
> html regardless of how much munging you do to the file and if you use
> javascript to encrypt the file, I can write a routine to unencrypt the
> javascript and so on and so forth...  You can make it tough, but not
> impossible.
>
> Justin
>
> > -Original Message-
> > From: Jim Vosika [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, June 10, 2002 2:15 PM
> > To: CF-Talk
> > Subject: RE: Hiding Info In View Source
> >
> > External javascript files maybe...
> >
> > Jim
> >
> > -Original Message-
> > From: Double Down [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, June 11, 2002 12:55 PM
> > To: CF-Talk
> > Subject: Hiding Info In View Source
> >
> > Does anyone know of a way to hide some form fields in the view source
> > code?
> >
> > TIA
> >
> > DDINC
> >
> >
> >
> >
> >
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Justin Greene

You cannot block the ability for someone determined to view your source, you
can only make it difficult.  I can telnet into the server and get the raw
html regardless of how much munging you do to the file and if you use
javascript to encrypt the file, I can write a routine to unencrypt the
javascript and so on and so forth...  You can make it tough, but not
impossible.

Justin

> -Original Message-
> From: Jim Vosika [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 10, 2002 2:15 PM
> To: CF-Talk
> Subject: RE: Hiding Info In View Source
> 
> External javascript files maybe...
> 
> Jim
> 
> -Original Message-
> From: Double Down [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, June 11, 2002 12:55 PM
> To: CF-Talk
> Subject: Hiding Info In View Source
> 
> Does anyone know of a way to hide some form fields in the view source
> code?
>  
> TIA
>  
> DDINC
>  
> 
> 
> 
> 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Jim Vosika

External javascript files maybe...

Jim

-Original Message-
From: Double Down [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 12:55 PM
To: CF-Talk
Subject: Hiding Info In View Source

Does anyone know of a way to hide some form fields in the view source
code?
 
TIA
 
DDINC
 



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hiding Info In View Source

2002-06-11 Thread Philip Arnold - ASP

> Does anyone know of a way to hide some form fields in the view source
> code?

It really boils down to what the visitor uses to view the source - if
they use NotePad, sure (not sure which character to start with, but I
think it's 26)

I personally use CFStudio, so there's no way to block what I see as it
shows everything...

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
Switchboard: +44 (0)20 8680 8099
Fax: +44 (0)20 8686 7911

www.aspmedia.co.uk
www.aspevents.net

An ISO9001 registered company.

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists