Re: hiding url variables

2007-02-01 Thread Richard White
thanks for all your replies. I think your right i will have to use hidden 
fields and form posts as much as possible. and when i need to use the URL then 
i will use the encrypt / decrypt link that was added in the replies. this is 
very useful, 

thanks very much for all your help

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: hiding url variables

2007-01-28 Thread Scott Pinkston
This page describes encrypting all of the url variables so ?myurl=1myrul2-blah 
would display like ?43924j423oi490fsd89yg438

The next page decrypts the variables and puts them back into the url scope.

http://www.cfdan.com/posts/Securing_your_applications_URL_variables.cfm


Might help.


How about instead of appending the variable and using a
hidden field.

Terry 

-Original Message-
From: Richard White [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 27, 2007 3:44 PM
To: CF-Talk
Subject: hiding url variables

Hi, i have a cfm page that uses a javascript function to
append a variable to a url. I then use the coldfusion url
variable set to collect the variable in the receiving cfm
page. 

however, the variable data is being displayed in the address
bar in the browser. is there anyway to hide the variable
data so that it doesn't show in the address bar?

thanks very much for any help



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: hiding url variables

2007-01-28 Thread John C. Bland II
URL params are always editable regardless of what you do. If you're worried
about data errors or sql injections, you can validate every url var.
isNumeric() handles all numeric url params. Run it through isNumeric, check
your database for data, redirect/show message if there is no data.

Another option is to use URL rewriting. That way,
?myurl=1myrul2-blah becomes mysite.com/myurl/1/myrul2/blah OR
mysite.com/myfile.cfm/myurl/1/myrul2/blah. Search for Ray Camden's URL
Rewriting function, it is handy.

Bottom line, no exact science here. It depends on your
needs/situation/preference(s).

On 1/28/07, Scott Pinkston [EMAIL PROTECTED] wrote:

 This page describes encrypting all of the url variables so
 ?myurl=1myrul2-blah would display like ?43924j423oi490fsd89yg438

 The next page decrypts the variables and puts them back into the url
 scope.

 http://www.cfdan.com/posts/Securing_your_applications_URL_variables.cfm


 Might help.


 How about instead of appending the variable and using a
 hidden field.
 
 Terry
 
 -Original Message-
 From: Richard White [mailto:[EMAIL PROTECTED]
 Sent: Saturday, January 27, 2007 3:44 PM
 To: CF-Talk
 Subject: hiding url variables
 
 Hi, i have a cfm page that uses a javascript function to
 append a variable to a url. I then use the coldfusion url
 variable set to collect the variable in the receiving cfm
 page.
 
 however, the variable data is being displayed in the address
 bar in the browser. is there anyway to hide the variable
 data so that it doesn't show in the address bar?
 
 thanks very much for any help
 
 

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


hiding url variables

2007-01-27 Thread Richard White
Hi, i have a cfm page that uses a javascript function to append a variable to a 
url. I then use the coldfusion url variable set to collect the variable in the 
receiving cfm page. 

however, the variable data is being displayed in the address bar in the 
browser. is there anyway to hide the variable data so that it doesn't show in 
the address bar?

thanks very much for any help

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: hiding url variables

2007-01-27 Thread Doug Brown
I do not have a real answer to the question but...maybe disguise it.

set it
cfset myUrlVar = createUUID()  1


get it
cfset myUrlVar = right(myUrlVar,1)


Doug B.




- Original Message - 
From: Richard White [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Saturday, January 27, 2007 4:44 PM
Subject: hiding url variables


 Hi, i have a cfm page that uses a javascript function to append a variable
to a url. I then use the coldfusion url variable set to collect the variable
in the receiving cfm page.

 however, the variable data is being displayed in the address bar in the
browser. is there anyway to hide the variable data so that it doesn't show
in the address bar?

 thanks very much for any help

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: hiding url variables

2007-01-27 Thread Qasim Rasheed
Or simply Encrypt and Decrypt using ColdFusion builtin functions.

HTH

On 1/27/07, Doug Brown [EMAIL PROTECTED] wrote:

 I do not have a real answer to the question but...maybe disguise it.

 set it
 cfset myUrlVar = createUUID()  1


 get it
 cfset myUrlVar = right(myUrlVar,1)


 Doug B.




 - Original Message -
 From: Richard White [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Saturday, January 27, 2007 4:44 PM
 Subject: hiding url variables


  Hi, i have a cfm page that uses a javascript function to append a
 variable
 to a url. I then use the coldfusion url variable set to collect the
 variable
 in the receiving cfm page.
 
  however, the variable data is being displayed in the address bar in the
 browser. is there anyway to hide the variable data so that it doesn't show
 in the address bar?
 
  thanks very much for any help
 
 

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: hiding url variables

2007-01-27 Thread Ben Doom
Off the top of my head, you have two options.

1)  A form post.  This pushes the information in the request header
instead of the URL.

2)  A redirect.  Use cflocation or similar to move from your receiving
page to the display page.

HTH.

--Ben

Richard White wrote:
 Hi, i have a cfm page that uses a javascript function to append a variable to 
 a url. I then use the coldfusion url variable set to collect the variable in 
 the receiving cfm page. 
 
 however, the variable data is being displayed in the address bar in the 
 browser. is there anyway to hide the variable data so that it doesn't show in 
 the address bar?
 
 thanks very much for any help
 
 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


RE: hiding url variables

2007-01-27 Thread Terry Troxel
How about instead of appending the variable and using a
hidden field.

Terry 

-Original Message-
From: Richard White [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 27, 2007 3:44 PM
To: CF-Talk
Subject: hiding url variables

Hi, i have a cfm page that uses a javascript function to
append a variable to a url. I then use the coldfusion url
variable set to collect the variable in the receiving cfm
page. 

however, the variable data is being displayed in the address
bar in the browser. is there anyway to hide the variable
data so that it doesn't show in the address bar?

thanks very much for any help




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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