⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
snap
/
lxd
/
current
/
wrappers
/
View File Name :
kmod
#!/bin/sh NAME="$(basename "${0}")" if [ "$(id -u)" != "0" ] && [ "${NAME}" = "modinfo" ]; then TMPDIR=$(mktemp -d) ln -s "/snap/core20/current/bin/kmod" "${TMPDIR}/modinfo" "${TMPDIR}/modinfo" "$@" RET=$? rm -Rf "${TMPDIR}" exit "${RET}" fi if [ "${NAME}" = "lsmod" ]; then exec "/snap/core20/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