Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 13.59.172.7
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
openssh /
Delete
Unzip
Name
Size
Permission
Date
Action
agent-launch
736
B
-rwxr-xr-x
2025-03-10 15:51
sftp-server
86.27
KB
-rwxr-xr-x
2025-04-11 12:05
ssh-keysign
330.6
KB
-rwsr-xr-x
2025-04-11 12:05
ssh-pkcs11-helper
118.42
KB
-rwxr-xr-x
2025-04-11 12:05
ssh-session-cleanup
239
B
-rwxr-xr-x
2024-07-10 10:17
ssh-sk-helper
134.41
KB
-rwxr-xr-x
2025-04-11 12:05
Save
Rename
#!/bin/sh # helper script for launching ssh-agent, used by systemd unit set -e if [ ! -d "$XDG_RUNTIME_DIR" ]; then # shellcheck disable=SC2016 echo 'This needs $XDG_RUNTIME_DIR to be set' >&2 exit 1 fi if [ "$1" = start ]; then if [ -z "$SSH_AUTH_SOCK" ] && grep -s -q '^use-ssh-agent$' /etc/X11/Xsession.options; then S="$XDG_RUNTIME_DIR/openssh_agent" dbus-update-activation-environment --verbose --systemd SSH_AUTH_SOCK="$S" SSH_AGENT_LAUNCHER=openssh exec ssh-agent -D -a "$S" fi elif [ "$1" = stop ]; then if [ "$SSH_AGENT_LAUNCHER" = openssh ]; then dbus-update-activation-environment --systemd SSH_AUTH_SOCK= fi else echo "Unknown command $1" >&2 exit 1 fi