Re: Re: Struts7 Allowlist Capability
Lukasz Lenart <[email protected]> Fri, 30 May 2025 06:15:25 +0200
| Newsgroups | gmane.comp.jakarta.struts.user |
|---|---|
| Message-ID | <CAMopvkM_Y4Nr0RKQTx2eV5iNt1y-ERz5G17JNKS9p4kBRsPS3Q@mail.gmail.com> |
czw., 29 maj 2025 o 20:42 Ute Kaiser <[email protected]> napisał(a): > > Lukasz, thank you for your advice. > I got rid of almost all by moving logic into the action and passing new flags to jsp instead. > > e.g. > Migrating struts1 > <logic:present name="myList"> > <logic:notEmpty name="myList"> > by > <s:if test="%{myList != null && !myList.isEmpty()}"> > raised > WARN [org.apache.struts2.ognl.SecurityMemberAccess] (default task-2) Declaring class [class java.util.ArrayList] of member type [public boolean java.util.ArrayList.isEmpty()] is not allowlisted! > > Solution according to your advice: > - Checking myList in the Action > - passing a new flag hasData=true|false to the jsp > - <s:if test="%{hasData}"> > worked. Very good, thanks for sharing your thoughts and solution! > One entry remaining in struts.allowlist.classes - the world won't end because of this :-) That's good, it means your app is very secure :) Cheers Łukasz