Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
lxd /
40115 /
wrappers /
Delete
Unzip
Name
Size
Permission
Date
Action
kmod
842
B
-rwxr-xr-x
2026-07-01 03:18
nvidia-container-cli
93
B
-rwxr-xr-x
2026-07-01 03:18
run-host
400
B
-rwxr-xr-x
2026-07-01 03:18
Save
Rename
#!/bin/sh # Turn `/usr/sbin/foo` into `foo` # Similar to `basename` but using variable substitution instead of external executable NAME="${0##*/}" # Detect base name SNAP_BASE="$(sed -n '/^name:/ s/^name:\s*\(core[0-9]\{2\}\)/\1/p' /meta/snap.yaml)" if [ "$(id -u)" != "0" ] && [ "${NAME}" = "modinfo" ]; then TMPDIR="$(mktemp -d)" ln -s "/snap/${SNAP_BASE}/current/bin/kmod" "${TMPDIR}/modinfo" "${TMPDIR}/modinfo" "$@" RET=$? rm -Rf "${TMPDIR}" exit "${RET}" fi if [ "${NAME}" = "lsmod" ]; then exec "/snap/${SNAP_BASE}/current/bin/kmod" "list" "$@" fi for i in "/bin/${NAME}" "/sbin/${NAME}" "/usr/bin/${NAME}" "/usr/sbin/${NAME}"; do [ ! -e "/var/lib/snapd/hostfs/${i}" ] && continue # shellcheck disable=SC2093 exec nsenter -t 1 -m "${i}" "$@" done echo "Unable to find ${NAME}" 1>&2 exit 1