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
18 lines
477 B
Bash
18 lines
477 B
Bash
#!/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
|