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.137.210.169
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
update-notifier /
Delete
Unzip
Name
Size
Permission
Date
Action
apt-cdrom-check
2.39
KB
-rwxr-xr-x
2024-03-04 10:49
apt-check
18.28
KB
-rwxr-xr-x
2024-03-04 10:49
apt_check.py
18.28
KB
-rwxr-xr-x
2024-03-04 10:49
backend_helper.py
4.92
KB
-rwxr-xr-x
2024-03-04 10:49
cddistupgrader
619
B
-rwxr-xr-x
2024-03-04 10:49
list-oem-metapackages
1.3
KB
-rwxr-xr-x
2024-03-04 10:49
package-data-downloader
11.83
KB
-rwxr-xr-x
2024-03-04 10:49
package-system-locked
358
B
-rwxr-xr-x
2024-03-04 10:49
update-motd-fsck-at-reboot
2.79
KB
-rwxr-xr-x
2024-03-04 10:49
update-motd-hwe-eol
1.81
KB
-rwxr-xr-x
2024-03-04 10:49
update-motd-reboot-required
115
B
-rwxr-xr-x
2024-03-04 10:49
update-motd-updates-available
1.69
KB
-rwxr-xr-x
2024-03-04 10:49
Save
Rename
#!/bin/sh # check if package system is locked # return 0 if unlocked, 2 if locked, 1 on error set -e for f in /var/lib/dpkg/lock /var/cache/apt/archives/lock \ /var/lib/apt/lists/lock /run/unattended-upgrades.lock; do [ -e $f ] || continue # fuser succeeds if there is at least one user if fuser $f; then exit 2 fi done exit 0