Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Access denied to crxde

Avatar

Level 2

Hi,

I would like to restrict a specific group not to access crxde lite in author mode .

Is there any way  to do that ?

suggestions are really appreciated,thx.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi Anton,

I don't think that this will work in that way, because CRXDE Liste is not a Sling application; therefor you should write a plain Http Servlet and register it via Felix. Then you can do that.

Jörg

View solution in original post

7 Replies

Avatar

Employee Advisor

Hi,

removing the links to https://hostname/crx/de/index.jsp doesn't help, if people are aware of it. Access to CRXDE Lite cannot be controlled using ACLs (in an AEM/Oak sense),  but only by implementing network ACLs; for example by alloweding only IPs from the admin network acess to /crx by implementing such rules through apache httpd config.

Jörg

Avatar

Level 4
what do we have to add to the httpd.config file to implement your idea??

Avatar

Level 2

Hi Jörg, the above solution holds good if there is a dispatcher infront of the author instance, also the admin will lose the access to crx if he moves out of the network for some reason (if the admin is on a travel for eg.), is it a good practice to consider IPs in this scenario?

Whats the alternative if there is no dispatcher in front of the author instance?

Avatar

Level 3

Hi,

You can write a sling filter with a pattern property. Check runmode. Get UserId. Then get Authorizable from UserManager. Then you can call memberOf() method on Authorizable.

This is first what came to my mind. Maybe there are better ways to reach you goal.

Avatar

Administrator

See if this helps you :- http://aemfaq.blogspot.in/2013/05/blocking-anonymous-access-to-crx-in-non.html

// Blocking anonymous access to Crx in a non dispatcher protected instance

~kautuk



Kautuk Sahni

Avatar

Correct answer by
Employee Advisor

Hi Anton,

I don't think that this will work in that way, because CRXDE Liste is not a Sling application; therefor you should write a plain Http Servlet and register it via Felix. Then you can do that.

Jörg

Avatar

Level 3

Hi Jörg,

Yep, you are right, today I faced with issue that crxde doesn't show anything when nosamplecontent runmode used. I googled and found out that CRXde is not a sling app and if I'm not mistaken, WebDav protocol used to get jcr tree in CRXde.