<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><br><div><div>On Jul 25, 2014, at 9:38 AM, Matthias Wessendorf &lt;<a href="mailto:matzew@apache.org">matzew@apache.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div class="gmail_extra"><br class="Apple-interchange-newline"><br><br><div class="gmail_quote">On Fri, Jul 25, 2014 at 3:33 PM, Bruno Oliveira<span class="Apple-converted-space">&nbsp;</span><span dir="ltr">&lt;<a href="mailto:bruno@abstractj.org" target="_blank">bruno@abstractj.org</a>&gt;</span><span class="Apple-converted-space">&nbsp;</span>wrote:<br><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;">Hi Tadeas, you are correct. Apache web server disallow %2F or %5C<br>due to security concerns. There are several alternatives, most of them<br>workarouds, some people double encode it, others replace / by _ back and<br>forth or some people disable it like:<br><br>&lt;VirtualHost *:80&gt;<br>&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span>AllowEncodedSlashes On<br>&lt;/VirtualHost&gt;<br></blockquote><div><br></div><div>so, looks like it was a stupid idea to use the pushEndpoint as the 'deviceToken'.</div><div><br></div><div>Perhaps we should make UPS.js generate a UUID and use that as deviceToken and send the pushEndpoint as part of the JSON, similar to like we did before.</div><div>(But before we were using the SimplePush channelID as the deviceToken, which is clearly a no-go)<br></div></div></div></div></blockquote><div><br></div><div>i’ll need to look into this more, &nbsp;but i sort of like the fact that the UPS.js is somewhat stateless and doesn’t care about SimplePush, &nbsp;since it is also used for GCM for Chrome</div><br><blockquote type="cite"><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div class="gmail_extra"><div class="gmail_quote"><div>&nbsp;</div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><br>I hope it helps, otherwise let me know how I can help.<br><div><div class="h5"><br>On 2014-07-25, Tadeas Kriz wrote:<br>&gt;<br>&gt; —<br>&gt; Tadeas Kriz<br>&gt;<br>&gt; On 25 Jul 2014, at 01:09 pm, Daniel Bevenius &lt;<a href="mailto:daniel.bevenius@gmail.com">daniel.bevenius@gmail.com</a>&gt; wrote:<br>&gt;<br>&gt; &gt; &gt; it might work, although I’m not sure if this is the best solution “on the market”.<br>&gt; &gt; It may not be the best solution and feel free to ignore it.<br>&gt; &gt;<br>&gt;<br>&gt; I’d love to test it first. My only concern is whether or not might it be a security issue. I think that’s something that Bruno might know.<br>&gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 25 July 2014 12:55, Tadeas Kriz &lt;<a href="mailto:tkriz@redhat.com">tkriz@redhat.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt; —<br>&gt; &gt; Tadeas Kriz<br>&gt; &gt;<br>&gt; &gt; On 25 Jul 2014, at 12:38 pm, Daniel Bevenius &lt;<a href="mailto:daniel.bevenius@gmail.com">daniel.bevenius@gmail.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt;&gt; &gt;What do you mean by that regex?<br>&gt; &gt;&gt; That the JAXRS implementation should not disallow as '/' in the path.<br>&gt; &gt;<br>&gt; &gt; Well, if it was like:<br>&gt; &gt;<br>&gt; &gt; ```<br>&gt; &gt; DELETE /rest/registry/installation/<a href="http://localhost:8321/asdasd" target="_blank">http://localhost:8321/asdasd</a><br>&gt; &gt; ```<br>&gt; &gt;<br>&gt; &gt; and the token you showed would match all the characters (which means that the `String token` would become `<a href="http://localhost:8321/asdasd`" target="_blank">http://localhost:8321/asdasd`</a><span class="Apple-converted-space">&nbsp;</span>in the endpoint method), it might work, although I’m not sure if this is the best solution “on the market”.<br>&gt; &gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; &gt;The problem is simply the “%2F” in the token (which is an URLencoded simplepush url) and it’s being revoked long before it hits the RestEasy (which does the routing according to what’s in the @Path).<br>&gt; &gt;&gt; I guess I don't understand why this would be revoked by anything before it hits the JAXRS implementation, but if that is the case you are right and adding this would not help.<br>&gt; &gt;&gt;<br>&gt; &gt;<br>&gt; &gt; This was a solution for a security hole. As I understand it, on linux, scripts cannot tell difference between “/“ and “%2F” and because of that, it’s forbidden to use as a path parameter (at least on Tomcat).<br>&gt; &gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; On 25 July 2014 12:25, Tadeas Kriz &lt;<a href="mailto:tkriz@redhat.com">tkriz@redhat.com</a>&gt; wrote:<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; —<br>&gt; &gt;&gt; Tadeas Kriz<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; On 25 Jul 2014, at 11:04 am, Daniel Bevenius &lt;<a href="mailto:daniel.bevenius@gmail.com">daniel.bevenius@gmail.com</a>&gt; wrote:<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; &gt;5. don’t use the url as a deviceToken (might not comply with Mozzila’s SimplePush specs)<br>&gt; &gt;&gt;&gt; The deviceToken is an UPS concept and there is nothing in the SimplePush spec which is violated in this case.<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; I thought that deviceTokens were changed from a generated value to the URL just to comply with Mozzila’s SimplePush specs. Matzew, why was the generated token removed then?<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; I'm not sure about what the best option is for UPS thought. Would a regex in for the @Path annotation work perhaps, something like:<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; @DELETE<br>&gt; &gt;&gt;&gt; @Path("{token, .+}")<br>&gt; &gt;&gt;&gt; public Response unregisterInstallations(<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; What do you mean by that regex? The problem is simply the “%2F” in the token (which is an URLencoded simplepush url) and it’s being revoked long before it hits the RestEasy (which does the routing according to what’s in the @Path).<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; On 25 July 2014 10:32, Tadeas Kriz &lt;<a href="mailto:tkriz@redhat.com">tkriz@redhat.com</a>&gt; wrote:<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; —<br>&gt; &gt;&gt;&gt; Tadeas Kriz<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; On 24 Jul 2014, at 05:44 pm, Karel Piwko &lt;<a href="mailto:kpiwko@redhat.com">kpiwko@redhat.com</a>&gt; wrote:<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; &gt; On Thu, Jul 24, 2014 at 3:28 PM, Tadeas Kriz &lt;<a href="mailto:tkriz@redhat.com">tkriz@redhat.com</a>&gt; wrote:<br>&gt; &gt;&gt;&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; &gt;&gt; It should not. For hibernate, it’s just a string like any other.<br>&gt; &gt;&gt;&gt; &gt;&gt; The problem might be in the configuration of<span class="Apple-converted-space">&nbsp;</span><a href="http://jax.rs/RestEasy" target="_blank">JAX.RS/RestEasy</a>. If<br>&gt; &gt;&gt;&gt; &gt;&gt; I’ll have some time today evening, I’ll try to fix it, it should<br>&gt; &gt;&gt;&gt; &gt;&gt; be an easy fix.<br>&gt; &gt;&gt;&gt; &gt;<br>&gt; &gt;&gt;&gt; &gt; Last famous words? ;-)<br>&gt; &gt;&gt;&gt; &gt;<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; I shall never say “an easy fix” again.<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; &gt; But I agree. Everything is string and URL encode should happen on<br>&gt; &gt;&gt;&gt; &gt; client while server should automatically decode and work always with<br>&gt; &gt;&gt;&gt; &gt; just decoded string. If we need to encode twice, something is wrong.<br>&gt; &gt;&gt;&gt; &gt;<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; Anyway, the 400 Bad request response is made by the tomcat itself, disallowing the use of %2F as a path parameter. This will probably apply on other web containers.<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; Possible solutions with their disadvantages:<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; 1. well-documented double-encoding of the URL (might be confusing)<br>&gt; &gt;&gt;&gt; 2. use @QueryParam instead of @PathParam (breaks the api consistence, as every other call would still use @PathParam)<br>&gt; &gt;&gt;&gt; 3. allow @QueryParam (again, breaks the api consistence, but only for the SimplePush)<br>&gt; &gt;&gt;&gt; 4. find another encoding (Base64 for URL = URLEncode then Base64 encode)<br>&gt; &gt;&gt;&gt; 5. don’t use the url as a deviceToken (might not comply with Mozzila’s SimplePush specs)<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; What do you think guys?<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; &gt;<br>&gt; &gt;&gt;&gt; &gt;<br>&gt; &gt;&gt;&gt; &gt; _______________________________________________<br>&gt; &gt;&gt;&gt; &gt; aerogear-dev mailing list<br>&gt; &gt;&gt;&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;&gt;&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; _______________________________________________<br>&gt; &gt;&gt;&gt; aerogear-dev mailing list<br>&gt; &gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; _______________________________________________<br>&gt; &gt;&gt;&gt; aerogear-dev mailing list<br>&gt; &gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;&gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; _______________________________________________<br>&gt; &gt;&gt; aerogear-dev mailing list<br>&gt; &gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt; _______________________________________________<br>&gt; &gt;&gt; aerogear-dev mailing list<br>&gt; &gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;&gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; aerogear-dev mailing list<br>&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; aerogear-dev mailing list<br>&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>&gt; &gt;<span class="Apple-converted-space">&nbsp;</span><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>&gt;<br><br></div></div>--<br><br>abstractj<br>PGP: 0x84DC9914<br><div class="HOEnZb"><div class="h5">_______________________________________________<br>aerogear-dev mailing list<br><a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a></div></div></blockquote></div><br><br clear="all"><div><br></div>--<span class="Apple-converted-space">&nbsp;</span><br>Matthias Wessendorf<span class="Apple-converted-space">&nbsp;</span><br><br>blog:<span class="Apple-converted-space">&nbsp;</span><a href="http://matthiaswessendorf.wordpress.com/" target="_blank">http://matthiaswessendorf.wordpress.com/</a><br>sessions:<span class="Apple-converted-space">&nbsp;</span><a href="http://www.slideshare.net/mwessendorf" target="_blank">http://www.slideshare.net/mwessendorf</a><br>twitter:<span class="Apple-converted-space">&nbsp;</span><a href="http://twitter.com/mwessendorf" target="_blank">http://twitter.com/mwessendorf</a></div></div><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">_______________________________________________</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">aerogear-dev mailing list</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><a href="mailto:aerogear-dev@lists.jboss.org" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">aerogear-dev@lists.jboss.org</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a></blockquote></div><br></body></html>