<div dir="ltr">Bom Dia!<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jun 17, 2014 at 7:23 PM, Bruno Oliveira <span dir="ltr">&lt;<a href="mailto:bruno@abstractj.org" target="_blank">bruno@abstractj.org</a>&gt;</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">Ahoy Jay, answers inline.<br>
<div class=""><br>
On 2014-06-17, Jay Balunas wrote:<br>
&gt; Great explanation of the issue and options!<br>
&gt;<br>
&gt; On Jun 17, 2014, at 10:26 AM, Bruno Oliveira &lt;<a href="mailto:bruno@abstractj.org">bruno@abstractj.org</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; Good morning peeps,<br>
&gt; &gt;<br>
&gt; &gt; I have a problem to solve which might affect the Sender and<br>
&gt; &gt; all the related clients.<br>
&gt; &gt;<br>
&gt; &gt; Previously, the UPS Sender was protected by the basic authentication<br>
&gt; &gt; method[1], so anyone in possession of _PushApplicationID_ and<br>
&gt; &gt; _MasterSecret_ is able to send push messages.<br>
&gt; &gt;<br>
&gt; &gt; After the integration with Keycloak now everything under _/rest_<br>
&gt; &gt; is properly protect by KC which is totally correct. Our sender is under<br>
&gt; &gt; the same umbrella which means that now Bearer token authentication is<br>
&gt; &gt; required[2] and Basic authentication won&#39;t exist anymore.<br>
&gt; &gt;<br>
&gt; &gt; The consequence of this is the basic form being presented when you try<br>
&gt; &gt; to send push notifications[3]. The problem didn&#39;t occur before, because<br>
&gt; &gt; we were just using Basic authentication[4] instead of Bearer tokens.<br>
&gt; &gt;<br>
&gt; &gt; Possible solutions:<br>
&gt; &gt;<br>
&gt; &gt; 1- After the removal of Basic authentication, move _PushApplicationID_<br>
&gt; &gt; and _MasterSecret to http headers like:<br>
&gt; &gt;<br>
&gt; &gt; -H &quot;PushApplicationID: XXXXXX&quot; -H &quot;MasterSecret: 42&quot;<br>
&gt; &gt;<br>
&gt; &gt; IMO it sounds correct and reasonable for me.<br>
&gt;<br>
&gt; How will this impact CURL usage from the command line?<br>
&gt; How will this impact Java sender usage?<br>
<br>
</div>We would change from (being logged in would be required):<br>
<br>
curl -3 -u &quot;{PushApplicationID}:{MasterSecret}&quot;<br>
   -v -H &quot;Accept: application/json&quot; -H &quot;Content-type: application/json&quot;<br>
      -X POST<br>
<br>
To:<br>
<br>
curl -3<br>
   -v -H &quot;PushApplicationID: XXXXXX&quot; -H &quot;MasterSecret: 42&quot; \<br>
      -H &quot;Accept: application/json&quot; -H &quot;Content-type: application/json&quot;<br>
      -X POST<br>
<div class=""><br></div></blockquote><div><br></div><div><br></div><div><br></div><div>That sounds like the most safe change to our client-registration and sender SDKs. Basically a &#39;minor&#39; change where we issue the HTTP request.</div>
<div><br></div><div>I&#39;d vote for this change, but only if it is not possible to exclude a few URLs from Keycloak ;-)</div><div><br></div><div>Note, that those excluded endpoints (for device-registration and sender) don&#39;t require any &lt;auth-method&gt; setting in web.xml,</div>
<div>as they implement their own simple HTTP_BASIC handling by querying our database ;-)</div><div><a href="https://github.com/abstractj/aerogear-unifiedpush-server/blob/keycloak.js/jaxrs/src/main/java/org/jboss/aerogear/unifiedpush/rest/sender/PushNotificationSenderEndpoint.java#L55-L61">https://github.com/abstractj/aerogear-unifiedpush-server/blob/keycloak.js/jaxrs/src/main/java/org/jboss/aerogear/unifiedpush/rest/sender/PushNotificationSenderEndpoint.java#L55-L61</a><br>
</div><div><br></div><div><br></div><div><br></div><div>But, yeah - if the exclusion is not possible at all, I like your suggested header usage fix. IMO that&#39;s the one with the fewest risks.</div><div><br></div><div><br>
</div><div>-Matthias</div><div><br></div><div><br></div><div> </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">
<div class="">
&gt;<br>
&gt; &gt;<br>
&gt; &gt; 2. Create a role specific for the sender like _push-applications_ and<br>
&gt; &gt; dinamically add _PushApplicationID_ and _MasterSecret on Keycloak where:<br>
&gt; &gt;<br>
&gt; &gt; username: _PushApplicationID_<br>
&gt; &gt; password: _MasterSecret_<br>
&gt; &gt;<br>
&gt; &gt; The implications of this alternative is the fact of have to manage those<br>
&gt; &gt; credentials on the server side inclusion/exclusion/login<br>
&gt;<br>
&gt; Would each application have its own &quot;role&quot; just for the sender in this case?<br>
<br>
</div>Each application would have the same role &quot;ups-application&quot;.<br>
<div class=""><br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; 3. Implement another authentication provider specifically for the sender<br>
&gt; &gt; and Basic authentication[5]<br>
&gt;<br>
&gt; Not sure of the impact here, but sounds like a complex solution.<br>
<br>
</div>Yes, totally agree on that.<br>
<div class=""><br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; 4. Do nothing. The consequences of this alternative is to implement<br>
&gt; &gt; everything already done by Keycloak.js and manage session tokens by hand<br>
&gt; &gt; on the admin-ui.<br>
&gt;<br>
&gt; -1<br>
<br>
</div>Stian sent to me a message, he might have more ideas about how to<br>
overcome this issue. I will update you guys during this week.<br>
<div class=""><div class="h5"><br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; To me the first alternative seems to be more simple, but I really want<br>
&gt; &gt; your feedback on it, once it affects the whole project.<br>
&gt; &gt;<br>
&gt; &gt; [1] -<br>
&gt; &gt; <a href="https://github.com/aerogear/aerogear-unifiedpush-server/blob/6c1a0d3fedea8fb6ba918009fd8e9785779c151f/jaxrs/src/main/java/org/jboss/aerogear/unifiedpush/rest/sender/PushNotificationSenderEndpoint.java#L56" target="_blank">https://github.com/aerogear/aerogear-unifiedpush-server/blob/6c1a0d3fedea8fb6ba918009fd8e9785779c151f/jaxrs/src/main/java/org/jboss/aerogear/unifiedpush/rest/sender/PushNotificationSenderEndpoint.java#L56</a><br>

&gt; &gt;<br>
&gt; &gt; [2] -<br>
&gt; &gt; <a href="https://github.com/abstractj/aerogear-unifiedpush-server/tree/keycloak.js" target="_blank">https://github.com/abstractj/aerogear-unifiedpush-server/tree/keycloak.js</a><br>
&gt; &gt; [3] -<br>
&gt; &gt; <a href="http://photon.abstractj.org/AeroGear_UnifiedPush_Server_2014-06-17_10-00-09_2014-06-17_10-00-12.jpg" target="_blank">http://photon.abstractj.org/AeroGear_UnifiedPush_Server_2014-06-17_10-00-09_2014-06-17_10-00-12.jpg</a><br>

&gt; &gt;<br>
&gt; &gt; [4] -<br>
&gt; &gt; <a href="https://github.com/aerogear/aerogear-unifiedpush-server/blob/master/server/src/main/webapp/WEB-INF/web.xml#L57" target="_blank">https://github.com/aerogear/aerogear-unifiedpush-server/blob/master/server/src/main/webapp/WEB-INF/web.xml#L57</a><br>

&gt; &gt;<br>
&gt; &gt; [5] - <a href="https://github.com/keycloak/keycloak/tree/master/examples/providers/authentication-properties" target="_blank">https://github.com/keycloak/keycloak/tree/master/examples/providers/authentication-properties</a><br>

&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt;<br>
&gt; &gt; abstractj<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; aerogear-dev mailing list<br>
&gt; &gt; <a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>
&gt; &gt; <a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; aerogear-dev mailing list<br>
&gt; <a href="mailto:aerogear-dev@lists.jboss.org">aerogear-dev@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/aerogear-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/aerogear-dev</a><br>
<br>
--<br>
<br>
abstractj<br>
_______________________________________________<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><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Matthias Wessendorf <br><br>blog: <a href="http://matthiaswessendorf.wordpress.com/" target="_blank">http://matthiaswessendorf.wordpress.com/</a><br>
sessions: <a href="http://www.slideshare.net/mwessendorf" target="_blank">http://www.slideshare.net/mwessendorf</a><br>twitter: <a href="http://twitter.com/mwessendorf" target="_blank">http://twitter.com/mwessendorf</a>
</div></div>