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 : 3.23.60.252
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
snapd /
24505 /
usr /
lib /
snapd /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
[ DIR ]
drwxr-xr-x
2025-04-05 19:10
apparmor.d
[ DIR ]
drwxr-xr-x
2025-04-05 19:10
apparmor_parser
11.23
MB
-rwxr-xr-x
2025-04-05 19:05
complete.sh
5.27
KB
-rw-r--r--
2025-04-05 19:10
etelpmoc.sh
6.87
KB
-rw-r--r--
2025-04-05 19:10
info
118
B
-rw-r--r--
2025-04-05 19:10
preseed.json
808
B
-rw-r--r--
2025-04-05 19:10
snap-bootstrap
20.46
MB
-rwxr-xr-x
2025-04-05 19:10
snap-confine
176.52
KB
-rwsr-xr-x
2025-04-05 19:10
snap-debug-info.sh
2.27
KB
-rwxr-xr-x
2025-04-05 19:04
snap-device-helper
61.92
KB
-rwxr-xr-x
2025-04-05 19:10
snap-discard-ns
45.73
KB
-rwxr-xr-x
2025-04-05 19:10
snap-exec
5.22
MB
-rwxr-xr-x
2025-04-05 19:10
snap-failure
3.03
MB
-rwxr-xr-x
2025-04-05 19:10
snap-fde-keymgr
4.69
MB
-rwxr-xr-x
2025-04-05 19:10
snap-gdb-shim
1.01
MB
-rwxr-xr-x
2025-04-05 19:10
snap-gdbserver-shim
1.01
MB
-rwxr-xr-x
2025-04-05 19:10
snap-mgmt
9.86
KB
-rwxr-xr-x
2025-04-05 19:08
snap-preseed
9.75
MB
-rwxr-xr-x
2025-04-05 19:10
snap-recovery-chooser
7.74
MB
-rwxr-xr-x
2025-04-05 19:10
snap-repair
7.95
MB
-rwxr-xr-x
2025-04-05 19:10
snap-seccomp
2.8
MB
-rwxr-xr-x
2025-04-05 19:10
snap-update-ns
6.24
MB
-rwxr-xr-x
2025-04-05 19:10
snapctl
7.09
MB
-rwxr-xr-x
2025-04-05 19:10
snapd
27.31
MB
-rwxr-xr-x
2025-04-05 19:10
snapd-apparmor
2.89
MB
-rwxr-xr-x
2025-04-05 19:10
snapd.core-fixup.sh
3.74
KB
-rwxr-xr-x
2025-04-05 19:10
snapd.run-from-snap
73
B
-rwxr-xr-x
2025-04-05 19:10
system-shutdown
37.61
KB
-rwxr-xr-x
2025-04-05 19:10
Save
Rename
#!/bin/bash # some commands need either root or sudo permissions, so check for that early if [ "$(id -u)" != 0 ]; then if ! sudo echo "authentication as root successful"; then echo "this script needs to be run as root or use sudo permission" exit 1 fi fi h1(){ echo -e "\n==================== $* ===================="; } h2(){ echo -e "\n========== $* =========="; } h3(){ echo -e "\n===== $* ====="; } h1 "SNAP VERSION"; snap version h1 "SNAP WHOAMI"; snap whoami h1 "SNAP MODEL"; snap model --verbose h1 "SNAP MODEL SERIAL"; snap model --serial --verbose h1 "SNAP LIST"; snap list --all h1 "SNAP SERVICES"; snap services h1 "SNAP CONNECTIONS"; snap connections h1 "PER-SNAP CONNECTIONS" for sn in $(snap list | awk 'NR>1 {print $1}'); do h2 "PER-SNAP $sn CONNECTIONS" snap connections "$sn" done h1 "SNAP CHANGES" snap changes --abs-time GADGET_SNAP="$(snap list | awk '($6 ~ /.*gadget.*$/) {print $1}')" if [ -z "$GADGET_SNAP" ]; then # could be a serious bug/problem or otherwise could be just on a classic # device h1 "NO GADGET SNAP DETECTED" else h1 "GADGET SNAP GADGET.YAML" cat /snap/"$(snap list | awk '($6 ~ /.*gadget.*$/) {print $1}')"/current/meta/gadget.yaml fi h1 "SNAP CHANGES (in Doing)" # print off the output of snap tasks <chg> for every chg that is in Doing state for chg in $(snap changes | tail -n +2 | grep -Po '(?:[0-9]+\s+Doing)' | awk '{print $1}'); do h3 "tasks for $chg" snap tasks "$chg" --abs-time done h1 "SNAP CHANGES (in Error)" # same as above, just for Error instead of Doing for chg in $(snap changes | tail -n +2 | grep -Po '(?:[0-9]+\s+Error)' | awk '{print $1}'); do h3 "tasks for $chg" snap tasks "$chg" --abs-time done h1 "VALIDATION SET ASSERTIONS" snap known validation-set # sudo needed for these commands h1 "VALIDATION SETS"; sudo snap validate h1 "OFFLINE SNAP CHANGES"; sudo snap debug state --abs-time --changes /var/lib/snapd/state.json h1 "SNAPD STACKTRACE"; sudo snap debug stacktraces h1 "SNAP SYSTEM CONFIG"; sudo snap get system -d h1 "SNAPD JOURNAL"; sudo journalctl --no-pager -u snapd h1 "SNAPD.SERVICE STATUS"; sudo systemctl --no-pager status snapd h1 "UPTIME"; uptime h1 "DATE (IN UTC)"; date --utc h1 "DISK SPACE"; df -h h1 "DENIED MESSAGES"; sudo journalctl --no-pager | grep DENIED