Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] 支持 Windows Tomcat 内存马连接测试 #45

Open
ReaJason opened this issue Feb 23, 2025 · 0 comments
Open

[Test] 支持 Windows Tomcat 内存马连接测试 #45

ReaJason opened this issue Feb 23, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@ReaJason
Copy link
Owner

用例详情

Describe the vul you want to test

部分应用部署在 Windows 服务器上,为了提供更佳的兼容性需要测试 Windows 服务器上的部署的 Tomcat 内存马注入,准备尝试基于 mcr.microsoft.com/windows/servercore:ltsc2019 构建 Tomcat 镜像

相关资料

Please list some useful links

From Grok3

# Use Windows Server Core LTSC 2019 as the base image
FROM mcr.microsoft.com/windows/servercore:ltsc2019

# Set the working directory
WORKDIR /app

# Download and install JDK 8 (example using a pre-downloaded zip file)
# Replace the URL with the actual JDK 8 download link or copy it locally
ADD https://example.com/jdk-8u351-windows-x64.zip /app/jdk.zip
RUN powershell -Command "Expand-Archive -Path jdk.zip -DestinationPath C:\jdk" && \
    del jdk.zip

# Set JAVA_HOME environment variable
ENV JAVA_HOME C:\\jdk\\jdk1.8.0_351
RUN setx /M PATH "%PATH%;%JAVA_HOME%\\bin"

# Download and install Tomcat 8
ADD https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.85/bin/apache-tomcat-8.5.85.zip /app/tomcat.zip
RUN powershell -Command "Expand-Archive -Path tomcat.zip -DestinationPath C:\tomcat" && \
    del tomcat.zip

# Expose the default Tomcat port
EXPOSE 8080

# Set the working directory to Tomcat's bin folder
WORKDIR C:\\tomcat\\apache-tomcat-8.5.85\\bin

# Start Tomcat when the container runs
CMD ["cmd.exe", "/C", "startup.bat"]
@ReaJason ReaJason added the enhancement New feature or request label Feb 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant