Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 52.14.234.146
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
usr /
lib /
snapd /
[ HOME SHELL ]
Name
Size
Permission
Action
complete.sh
5.27
KB
-rw-r--r--
etelpmoc.sh
6.87
KB
-rw-r--r--
info
118
B
-rw-r--r--
snap-bootstrap
9.64
MB
-rwxr-xr-x
snap-confine
124.53
KB
-rwsr-xr-x
snap-device-helper
38.52
KB
-rwxr-xr-x
snap-discard-ns
26.45
KB
-rwxr-xr-x
snap-exec
3.92
MB
-rwxr-xr-x
snap-failure
2.48
MB
-rwxr-xr-x
snap-fde-keymgr
3.54
MB
-rwxr-xr-x
snap-gdb-shim
924.8
KB
-rwxr-xr-x
snap-gdbserver-shim
924.8
KB
-rwxr-xr-x
snap-mgmt
8.79
KB
-rwxr-xr-x
snap-preseed
8.59
MB
-rwxr-xr-x
snap-recovery-chooser
6.66
MB
-rwxr-xr-x
snap-repair
6.72
MB
-rwxr-xr-x
snap-seccomp
2.02
MB
-rwxr-xr-x
snap-update-ns
4.69
MB
-rwxr-xr-x
snapctl
6.13
MB
-rwxr-xr-x
snapd
20.72
MB
-rwxr-xr-x
snapd-apparmor
2.04
MB
-rwxr-xr-x
snapd.core-fixup.sh
3.74
KB
-rwxr-xr-x
snapd.run-from-snap
73
B
-rwxr-xr-x
sshd-host-keygen
1.53
KB
-rwxr-xr-x
system-shutdown
22.41
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sshd-host-keygen
#!/bin/sh set -eu # taken from the openssh-server.postinst get_config_option() { option="$1" [ -f /etc/ssh/sshd_config ] || return # TODO: actually only one '=' allowed after option perl -lne ' s/[[:space:]]+/ /g; s/[[:space:]]+$//; print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \ /etc/ssh/sshd_config } host_keys_required() { hostkeys="$(get_config_option HostKey)" if [ "$hostkeys" ]; then echo "$hostkeys" else # No HostKey directives at all, so the server picks some # defaults. echo /etc/ssh/ssh_host_rsa_key echo /etc/ssh/ssh_host_dsa_key echo /etc/ssh/ssh_host_ecdsa_key echo /etc/ssh/ssh_host_ed25519_key fi } create_key() { msg="$1" shift hostkeys="$1" shift file="$1" shift if echo "$hostkeys" | grep -x "$file" >/dev/null && \ [ ! -f "$file" ] ; then printf "%s" "$msg" ssh-keygen -q -f "$file" -N '' "$@" echo if which restorecon >/dev/null 2>&1; then restorecon "$file" "$file.pub" fi ssh-keygen -l -f "$file.pub" sync fi } create_keys() { hostkeys="$(host_keys_required)" create_key "Creating SSH2 RSA key; this may take some time ..." \ "$hostkeys" /etc/ssh/ssh_host_rsa_key -t rsa create_key "Creating SSH2 DSA key; this may take some time ..." \ "$hostkeys" /etc/ssh/ssh_host_dsa_key -t dsa create_key "Creating SSH2 ECDSA key; this may take some time ..." \ "$hostkeys" /etc/ssh/ssh_host_ecdsa_key -t ecdsa create_key "Creating SSH2 ED25519 key; this may take some time ..." \ "$hostkeys" /etc/ssh/ssh_host_ed25519_key -t ed25519 } create_keys
Close