내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

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 채택된 해결책 개

Avatar

정확한 답변 작성자:
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

원본 게시물의 솔루션 보기

7 답변 개

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

정확한 답변 작성자:
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.