GitBook: [master] one page modified

This commit is contained in:
CPol 2021-06-26 13:24:50 +00:00 committed by gitbook-bot
parent c587535ca8
commit 2617d4477e
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -331,6 +331,11 @@ Payload: {{'a'.getClass().forName('javax.script.ScriptEngineManager').newInstanc
### Expression Language - EL \(Java\)
* `${"aaaa"}` - "aaaa"
* `${99999+1}` - 100000.
* `#{7*7}` - 49
* `{{7*7}}` - 49
EL provides an important mechanism for enabling the presentation layer \(web pages\) to communicate with the application logic \(managed beans\). The EL is used by **several JavaEE technologies**, such as JavaServer Faces technology, JavaServer Pages \(JSP\) technology, and Contexts and Dependency Injection for Java EE \(CDI\).
Check the following page to learn more about the **exploitation of EL interpreters**: