Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-16 Thread jpswain

All you have to do is not put sensitive forms on bookmarkable pages.  The
bookmarkable pages containing forms should be things like searches, that
aren't really meaningful targets for attack.  The sensitive forms for things
like account info, transactions, etc, should be on session-relative URLs
which of course will work with CryptedUrlWebRequestCodingStrategy.

Hope this helps,
Jamie


mfs wrote:
 
 Yet another question on the usage CryptedUrlWebRequestCodingStrategy. So
 lets say we have implemented the CryptedUrlWebRequestCodingStrategy, now
 even in that case wouldn't the following statement be true.
 
 All pages which are mounted through any of the
 bookmarkable-url-encoding-strategies for NICE urls would STILL be
 vulnerable to CSRF attacks? 
 
 Though the statement wouldn't be true for forms/links or any wicket
 event/action on that page (correct me if i am wrong here).  To prevent
 that we should ensure that  :
 
 - No such critical actions are performed in the constructor of the
 page. In other words all such actions (ideally) should be invoked via some
 events on the page itself.
 
 Thanks in advance,
 
 Farhan.
  
 

-- 
View this message in context: 
http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25480921.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-14 Thread mfs

Thanks Igor. Also I opened the jira-issue
https://issues.apache.org/jira/browse/WICKET-2466 as suggested.





igor.vaynberg wrote:
 
 the javadoc is out of date please open a jira issue to have the javadoc
 updated.
 
 -igor
 
 On Sat, Sep 12, 2009 at 2:50 PM, mfs farhan.sar...@gmail.com wrote:

 Hi Guys,

 Sorry for not picking up the right thread for this question but I am not
 able to submit a post. Anyways..

 My question is regarding the javadocs for
 CryptedUrlWebRequestCodingStrategy
 which in the end says Because the algorithm is reversible, URLs which
 were
 bookmarkable before will remain bookmarkable.. I wonder if that is true
 for
 post 1.3.5 releases where the encryption involves the user-session id ?

 Thanks in advance
 Farhan.




 Vytautas Civilis wrote:

 Hi Erik,

 that's not a concern for me really - I'm providing static application
 specific key (not uber secure I know), this let's me have a bookmarkable
 page even with encrypted key (as enc key does not change).

 The issue (more like a feature request :]), is that hybrid
 encodes/decodes params in different way than
 CryptedUrlWebRequestCodingStrategy (which uses the more common style of
 QueryStringUrlCodingStrategy).
 I imagine, that's the only problem, so perhaps anyone has implemented
 that already, e.g. with some params encoding/decoding strategy, which
 could be supplied to hybrid strat (or to crypt strat ;]).

 cvl

 Erik van Oosten wrote:
 Hi Vytautas,

 You can not encrypt bookmarkable URLs as encryption is done per
 session.
 So if you're URLs need to be secure you are limited to regular Link's.

 Regards,
    Erik.



 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:

 why would you encrypt the hybrid?





 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 View this message in context:
 http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25418524.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25440696.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-14 Thread mfs

Yet another question on the usage CryptedUrlWebRequestCodingStrategy. So lets
say we have implemented the CryptedUrlWebRequestCodingStrategy, now even in
that case wouldn't the following statement be true.

All pages which are mounted through any of the
bookmarkable-url-encoding-strategies for NICE urls would STILL be vulnerable
to CSRF attacks? 

Though the statement wouldn't be true for forms/links or any wicket
event/action on that page (correct me if i am wrong here).  To prevent that
we should ensure that  :

- No such critical actions are performed in the constructor of the page.
In other words all such actions (ideally) should be invoked via some events
on the page itself.

Thanks in advance,

Farhan.
 


igor.vaynberg wrote:
 
 the javadoc is out of date please open a jira issue to have the javadoc
 updated.
 
 -igor
 
 On Sat, Sep 12, 2009 at 2:50 PM, mfs farhan.sar...@gmail.com wrote:

 Hi Guys,

 Sorry for not picking up the right thread for this question but I am not
 able to submit a post. Anyways..

 My question is regarding the javadocs for
 CryptedUrlWebRequestCodingStrategy
 which in the end says Because the algorithm is reversible, URLs which
 were
 bookmarkable before will remain bookmarkable.. I wonder if that is true
 for
 post 1.3.5 releases where the encryption involves the user-session id ?

 Thanks in advance
 Farhan.




 Vytautas Civilis wrote:

 Hi Erik,

 that's not a concern for me really - I'm providing static application
 specific key (not uber secure I know), this let's me have a bookmarkable
 page even with encrypted key (as enc key does not change).

 The issue (more like a feature request :]), is that hybrid
 encodes/decodes params in different way than
 CryptedUrlWebRequestCodingStrategy (which uses the more common style of
 QueryStringUrlCodingStrategy).
 I imagine, that's the only problem, so perhaps anyone has implemented
 that already, e.g. with some params encoding/decoding strategy, which
 could be supplied to hybrid strat (or to crypt strat ;]).

 cvl

 Erik van Oosten wrote:
 Hi Vytautas,

 You can not encrypt bookmarkable URLs as encryption is done per
 session.
 So if you're URLs need to be secure you are limited to regular Link's.

 Regards,
    Erik.



 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:

 why would you encrypt the hybrid?





 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 View this message in context:
 http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25418524.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25443314.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-14 Thread mfs

Hello Guys,

Would appreciate some comments on my last post...

Thanks in advance..
Farhan.


mfs wrote:
 
 Yet another question on the usage CryptedUrlWebRequestCodingStrategy. So
 lets say we have implemented the CryptedUrlWebRequestCodingStrategy, now
 even in that case wouldn't the following statement be true.
 
 All pages which are mounted through any of the
 bookmarkable-url-encoding-strategies for NICE urls would STILL be
 vulnerable to CSRF attacks? 
 
 Though the statement wouldn't be true for forms/links or any wicket
 event/action on that page (correct me if i am wrong here).  To prevent
 that we should ensure that  :
 
 - No such critical actions are performed in the constructor of the
 page. In other words all such actions (ideally) should be invoked via some
 events on the page itself.
 
 Thanks in advance,
 
 Farhan.
  
 
 
 igor.vaynberg wrote:
 
 the javadoc is out of date please open a jira issue to have the javadoc
 updated.
 
 -igor
 
 On Sat, Sep 12, 2009 at 2:50 PM, mfs farhan.sar...@gmail.com wrote:

 Hi Guys,

 Sorry for not picking up the right thread for this question but I am not
 able to submit a post. Anyways..

 My question is regarding the javadocs for
 CryptedUrlWebRequestCodingStrategy
 which in the end says Because the algorithm is reversible, URLs which
 were
 bookmarkable before will remain bookmarkable.. I wonder if that is true
 for
 post 1.3.5 releases where the encryption involves the user-session id ?

 Thanks in advance
 Farhan.




 Vytautas Civilis wrote:

 Hi Erik,

 that's not a concern for me really - I'm providing static application
 specific key (not uber secure I know), this let's me have a
 bookmarkable
 page even with encrypted key (as enc key does not change).

 The issue (more like a feature request :]), is that hybrid
 encodes/decodes params in different way than
 CryptedUrlWebRequestCodingStrategy (which uses the more common style of
 QueryStringUrlCodingStrategy).
 I imagine, that's the only problem, so perhaps anyone has implemented
 that already, e.g. with some params encoding/decoding strategy, which
 could be supplied to hybrid strat (or to crypt strat ;]).

 cvl

 Erik van Oosten wrote:
 Hi Vytautas,

 You can not encrypt bookmarkable URLs as encryption is done per
 session.
 So if you're URLs need to be secure you are limited to regular Link's.

 Regards,
    Erik.



 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security
 related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:

 why would you encrypt the hybrid?





 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 View this message in context:
 http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25418524.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 
 

-- 
View this message in context: 
http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25448169.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-12 Thread mfs

Hi Guys,

Sorry for not picking up the right thread for this question but I am not
able to submit a post. Anyways..

My question is regarding the javadocs for CryptedUrlWebRequestCodingStrategy
which in the end says Because the algorithm is reversible, URLs which were
bookmarkable before will remain bookmarkable.. I wonder if that is true for
post 1.3.5 releases where the encryption involves the user-session id ?

Thanks in advance
Farhan.




Vytautas Civilis wrote:
 
 Hi Erik,
 
 that's not a concern for me really - I'm providing static application
 specific key (not uber secure I know), this let's me have a bookmarkable
 page even with encrypted key (as enc key does not change).
 
 The issue (more like a feature request :]), is that hybrid
 encodes/decodes params in different way than
 CryptedUrlWebRequestCodingStrategy (which uses the more common style of
 QueryStringUrlCodingStrategy).
 I imagine, that's the only problem, so perhaps anyone has implemented
 that already, e.g. with some params encoding/decoding strategy, which
 could be supplied to hybrid strat (or to crypt strat ;]).
 
 cvl
 
 Erik van Oosten wrote:
 Hi Vytautas,
 
 You can not encrypt bookmarkable URLs as encryption is done per session.
 So if you're URLs need to be secure you are limited to regular Link's.
 
 Regards,
Erik.
 
 
 
 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:
  
 why would you encrypt the hybrid?

 
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25418524.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-12 Thread Igor Vaynberg
the javadoc is out of date please open a jira issue to have the javadoc updated.

-igor

On Sat, Sep 12, 2009 at 2:50 PM, mfs farhan.sar...@gmail.com wrote:

 Hi Guys,

 Sorry for not picking up the right thread for this question but I am not
 able to submit a post. Anyways..

 My question is regarding the javadocs for CryptedUrlWebRequestCodingStrategy
 which in the end says Because the algorithm is reversible, URLs which were
 bookmarkable before will remain bookmarkable.. I wonder if that is true for
 post 1.3.5 releases where the encryption involves the user-session id ?

 Thanks in advance
 Farhan.




 Vytautas Civilis wrote:

 Hi Erik,

 that's not a concern for me really - I'm providing static application
 specific key (not uber secure I know), this let's me have a bookmarkable
 page even with encrypted key (as enc key does not change).

 The issue (more like a feature request :]), is that hybrid
 encodes/decodes params in different way than
 CryptedUrlWebRequestCodingStrategy (which uses the more common style of
 QueryStringUrlCodingStrategy).
 I imagine, that's the only problem, so perhaps anyone has implemented
 that already, e.g. with some params encoding/decoding strategy, which
 could be supplied to hybrid strat (or to crypt strat ;]).

 cvl

 Erik van Oosten wrote:
 Hi Vytautas,

 You can not encrypt bookmarkable URLs as encryption is done per session.
 So if you're URLs need to be secure you are limited to regular Link's.

 Regards,
    Erik.



 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:

 why would you encrypt the hybrid?





 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 View this message in context: 
 http://www.nabble.com/HybridUrlCodingStrategy-and-CryptedUrlWebRequestCodingStrategy-tp23960469p25418524.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
Hi.

Is it possible to use both?

CryptedUrlWebRequestCodingStrategy understands only
QueryStringUrlCodingStrategy (i.e. params encoded in x=1so=on format).

Do I need to provide my own extension to
CryptedUrlWebRequestCodingStrategy to support hybrid, or are there any
existing ones?

Is it possible to make hybrid encode params in
QueryStringUrlCodingStrategy fashion? (I need only the bookmarkable
links functionality).

Thanks.

cvl

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Johan Compagner
why would you encrypt the hybrid?

2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com

 Hi.

 Is it possible to use both?

 CryptedUrlWebRequestCodingStrategy understands only
 QueryStringUrlCodingStrategy (i.e. params encoded in x=1so=on format).

 Do I need to provide my own extension to
 CryptedUrlWebRequestCodingStrategy to support hybrid, or are there any
 existing ones?

 Is it possible to make hybrid encode params in
 QueryStringUrlCodingStrategy fashion? (I need only the bookmarkable
 links functionality).

 Thanks.

 cvl

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

e.g., if you have /path1/path2/param1/value1
and param1/value1 might expose some business logic or security related
concerns.
in the same manner as /path1/path2/param1=value1 would

cvl

Johan Compagner wrote:
 why would you encrypt the hybrid?
 
 2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com
 mailto:vytautas.civi...@gmail.com
 
 Hi.
 
 Is it possible to use both?
 
 CryptedUrlWebRequestCodingStrategy understands only
 QueryStringUrlCodingStrategy (i.e. params encoded in x=1so=on format).
 
 Do I need to provide my own extension to
 CryptedUrlWebRequestCodingStrategy to support hybrid, or are there any
 existing ones?
 
 Is it possible to make hybrid encode params in
 QueryStringUrlCodingStrategy fashion? (I need only the bookmarkable
 links functionality).
 
 Thanks.
 
 cvl
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 mailto:users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 mailto:users-h...@wicket.apache.org
 
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Erik van Oosten

Hi Vytautas,

You can not encrypt bookmarkable URLs as encryption is done per session. 
So if you're URLs need to be secure you are limited to regular Link's.


Regards,
   Erik.



Vytautas Čivilis wrote:

for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

e.g., if you have /path1/path2/param1/value1
and param1/value1 might expose some business logic or security related
concerns.
in the same manner as /path1/path2/param1=value1 would

cvl

Johan Compagner wrote:
  

why would you encrypt the hybrid?





--
Erik van Oosten
http://www.day-to-day-stuff.blogspot.com/


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
Hi Erik,

that's not a concern for me really - I'm providing static application
specific key (not uber secure I know), this let's me have a bookmarkable
page even with encrypted key (as enc key does not change).

The issue (more like a feature request :]), is that hybrid
encodes/decodes params in different way than
CryptedUrlWebRequestCodingStrategy (which uses the more common style of
QueryStringUrlCodingStrategy).
I imagine, that's the only problem, so perhaps anyone has implemented
that already, e.g. with some params encoding/decoding strategy, which
could be supplied to hybrid strat (or to crypt strat ;]).

cvl

Erik van Oosten wrote:
 Hi Vytautas,
 
 You can not encrypt bookmarkable URLs as encryption is done per session.
 So if you're URLs need to be secure you are limited to regular Link's.
 
 Regards,
Erik.
 
 
 
 Vytautas Čivilis wrote:
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:
  
 why would you encrypt the hybrid?

 
 
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Johan Compagner
Erik is right it doesnt make any sense to encrypt Bookmarkables

And we never encrypt /xxx/yyy/zzz anyway as far as i know
only params like x=?

And those are only for internal urls

And for hybrid the internal urls are first a bookmarkable part and then a
wicket part and if those where params
i think we could encrypt them just fine. But dont know for sure what hybrid
does



2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com

 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.

 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would

 cvl

 Johan Compagner wrote:
  why would you encrypt the hybrid?
 
  2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com
  mailto:vytautas.civi...@gmail.com
 
  Hi.
 
  Is it possible to use both?
 
  CryptedUrlWebRequestCodingStrategy understands only
  QueryStringUrlCodingStrategy (i.e. params encoded in x=1so=on
 format).
 
  Do I need to provide my own extension to
  CryptedUrlWebRequestCodingStrategy to support hybrid, or are there
 any
  existing ones?
 
  Is it possible to make hybrid encode params in
  QueryStringUrlCodingStrategy fashion? (I need only the bookmarkable
  links functionality).
 
  Thanks.
 
  cvl
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  mailto:users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
  mailto:users-h...@wicket.apache.org
  
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
The answer is clear.

Thanks for the answers.

cvl

Johan Compagner wrote:
 Erik is right it doesnt make any sense to encrypt Bookmarkables
  
 And we never encrypt /xxx/yyy/zzz anyway as far as i know
 only params like x=?
  
 And those are only for internal urls
  
 And for hybrid the internal urls are first a bookmarkable part and then
 a wicket part and if those where params
 i think we could encrypt them just fine. But dont know for sure what
 hybrid does
 
 
  
 2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com
 mailto:vytautas.civi...@gmail.com
 
 for the same purpose, one would encrypt QueryStringUrlCodingStrategy.
 
 e.g., if you have /path1/path2/param1/value1
 and param1/value1 might expose some business logic or security related
 concerns.
 in the same manner as /path1/path2/param1=value1 would
 
 cvl
 
 Johan Compagner wrote:
  why would you encrypt the hybrid?
 
  2009/6/10 Vytautas Čivilis vytautas.civi...@gmail.com
 mailto:vytautas.civi...@gmail.com
  mailto:vytautas.civi...@gmail.com
 mailto:vytautas.civi...@gmail.com
 
  Hi.
 
  Is it possible to use both?
 
  CryptedUrlWebRequestCodingStrategy understands only
  QueryStringUrlCodingStrategy (i.e. params encoded in x=1so=on
 format).
 
  Do I need to provide my own extension to
  CryptedUrlWebRequestCodingStrategy to support hybrid, or are
 there any
  existing ones?
 
  Is it possible to make hybrid encode params in
  QueryStringUrlCodingStrategy fashion? (I need only the
 bookmarkable
  links functionality).
 
  Thanks.
 
  cvl
 
 
 -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 mailto:users-unsubscr...@wicket.apache.org
  mailto:users-unsubscr...@wicket.apache.org
 mailto:users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 mailto:users-h...@wicket.apache.org
  mailto:users-h...@wicket.apache.org
 mailto:users-h...@wicket.apache.org
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 mailto:users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 mailto:users-h...@wicket.apache.org
 
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org