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 : 18.191.138.59
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
update-motd.d /
Delete
Unzip
Name
Size
Permission
Date
Action
00-header
1.19
KB
-rwxr-xr-x
2021-10-15 10:06
10-help-text
1.12
KB
-rwxr-xr-x
2024-01-02 14:57
50-landscape-sysinfo
1.54
KB
-rwxr-xr-x
2024-05-28 19:19
50-motd-news
4.91
KB
-rwxr-xr-x
2021-10-15 10:06
85-fwupd
84
B
-rwxr-xr-x
2023-05-17 05:35
90-updates-available
218
B
-rwxr-xr-x
2023-02-28 02:15
91-contract-ua-esm-status
296
B
-rwxr-xr-x
2023-11-30 17:00
91-release-upgrade
558
B
-rwxr-xr-x
2023-01-09 17:05
92-unattended-upgrades
165
B
-rwxr-xr-x
2021-02-19 12:11
95-hwe-eol
379
B
-rwxr-xr-x
2023-02-28 02:15
97-overlayroot
111
B
-rwxr-xr-x
2020-08-17 16:00
98-fsck-at-reboot
142
B
-rwxr-xr-x
2023-02-28 02:15
98-reboot-required
144
B
-rwxr-xr-x
2023-02-28 02:15
99-livepatch-kernel-upgrade-required
275
B
-rwxr-xr-x
2024-10-20 21:33
Save
Rename
#!/bin/sh # don't try refresh this more than once per minute # Due to cpu consumption and login delays (LP: #1893716) CACHE="/var/lib/landscape/landscape-sysinfo.cache" HAS_CACHE="FALSE" CACHE_NEEDS_UPDATE="FALSE" [ -r "$CACHE" ] && HAS_CACHE="TRUE" [ -z "$(find "$CACHE" -newermt 'now-1 minutes' 2> /dev/null)" ] && CACHE_NEEDS_UPDATE="TRUE" if [ "$HAS_CACHE" = "TRUE" ] && [ "$CACHE_NEEDS_UPDATE" = "FALSE" ]; then cat "$CACHE" else SYSINFO="" # pam_motd does not carry the environment [ -f /etc/default/locale ] && . /etc/default/locale export LANG CORES=$(grep -c ^processor /proc/cpuinfo 2>/dev/null) [ "$CORES" -eq "0" ] && CORES=1 THRESHOLD="${CORES:-1}.0" if [ $(echo "`cut -f1 -d ' ' /proc/loadavg` < $THRESHOLD" | bc) -eq 1 ]; then SYSINFO=$(printf "\n System information as of %s\n\n%s\n" \ "$(/bin/date)" \ "$(/usr/bin/landscape-sysinfo)") echo "$SYSINFO" 2>/dev/null >"$CACHE" || true chmod 0644 "$CACHE" 2>/dev/null || true else SYSINFO=$(printf "\n System information disabled due to load higher than %s\n" "$THRESHOLD") if [ "$HAS_CACHE" = "TRUE" ]; then if ! grep -q "System information as of" $CACHE 2>/dev/null; then # do not replace a formerly good result due to load echo "$SYSINFO" 2>/dev/null >"$CACHE" || true chmod 0644 "$CACHE" 2>/dev/null || true else SYSINFO=$(cat "$CACHE") fi fi fi printf "%s\n" "$SYSINFO" fi exit 0