Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17284 /
usr /
lib /
snapd /
Delete
Unzip
Name
Size
Permission
Date
Action
complete.sh
5.27
KB
-rw-r--r--
2024-06-04 22:58
etelpmoc.sh
6.87
KB
-rw-r--r--
2024-06-04 22:58
info
138
B
-rw-r--r--
2024-12-18 02:09
snap-bootstrap
9.66
MB
-rwxr-xr-x
2024-12-18 02:17
snap-confine
124.66
KB
-rwsr-xr-x
2024-12-18 02:17
snap-device-helper
38.64
KB
-rwxr-xr-x
2024-12-18 02:17
snap-discard-ns
26.57
KB
-rwxr-xr-x
2024-12-18 02:17
snap-exec
3.93
MB
-rwxr-xr-x
2024-12-18 02:17
snap-failure
2.48
MB
-rwxr-xr-x
2024-12-18 02:17
snap-fde-keymgr
3.55
MB
-rwxr-xr-x
2024-12-18 02:17
snap-gdb-shim
928.94
KB
-rwxr-xr-x
2024-12-18 02:17
snap-gdbserver-shim
928.94
KB
-rwxr-xr-x
2024-12-18 02:17
snap-mgmt
8.79
KB
-rwxr-xr-x
2024-12-18 02:17
snap-preseed
8.61
MB
-rwxr-xr-x
2024-12-18 02:17
snap-recovery-chooser
6.68
MB
-rwxr-xr-x
2024-12-18 02:17
snap-repair
6.74
MB
-rwxr-xr-x
2024-12-18 02:17
snap-seccomp
2.06
MB
-rwxr-xr-x
2024-12-18 02:17
snap-update-ns
4.7
MB
-rwxr-xr-x
2024-12-18 02:17
snapctl
6.15
MB
-rwxr-xr-x
2024-12-18 02:17
snapd
20.76
MB
-rwxr-xr-x
2024-12-18 02:17
snapd-apparmor
2.04
MB
-rwxr-xr-x
2024-12-18 02:17
snapd.core-fixup.sh
3.74
KB
-rwxr-xr-x
2024-12-18 02:16
snapd.run-from-snap
73
B
-rwxr-xr-x
2024-12-18 02:16
sshd-host-keygen
1.53
KB
-rwxr-xr-x
2025-10-09 12:13
system-shutdown
22.53
KB
-rwxr-xr-x
2024-12-18 02:17
Save
Rename
#!/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