mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-04-27 17:26:29 -04:00
See https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#expression-inlining Added it because I have discovered that, when StringTemplateResolver is used, then expression like ${42*42} is not resolved
11 lines
134 B
Text
11 lines
134 B
Text
42*42
|
|
{42*42}
|
|
{{42*42}}
|
|
{{{42*42}}}
|
|
#{42*42}
|
|
${42*42}
|
|
<%=42*42 %>
|
|
{{=42*42}}
|
|
{^xyzm42}1764{/xyzm42}
|
|
${donotexists|42*42}
|
|
[[${42*42}]]
|