first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled

This commit is contained in:
2025-09-06 16:08:15 +08:00
commit 63285f61aa
2624 changed files with 88491 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/sh
#
# Script based on https://forums.adobe.com/message/4727551
cd /tmp
if [ ! -f "ColdFusion_11_WWEJ_linux64.bin" ]; then
wget https://file.vulhub.org/download/coldfusion/ColdFusion_11_WWEJ_linux64.bin
chmod 755 ColdFusion_11_WWEJ_linux64.bin
fi
useradd -c "user for colfusion" -M -G www-data coldfusion
/tmp/ColdFusion_11_WWEJ_linux64.bin -f installer.profile
if [ -f "ColdFusion_11_WWEJ_linux64.bin" ]; then
rm ColdFusion_11_WWEJ_linux64.bin
fi