11 lines
110 B
Bash
11 lines
110 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f /flag.sh ]]; then
|
|
source /flag.sh
|
|
fi
|
|
|
|
mkdir /run/sshd
|
|
/usr/sbin/sshd
|
|
|
|
tail -F /dev/null
|