Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
landscape /
sysinfo /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
deployment.py
4.86
KB
-rw-r--r--
disk.py
2.52
KB
-rw-r--r--
landscapelink.py
336
B
-rw-r--r--
load.py
287
B
-rw-r--r--
loggedinusers.py
497
B
-rw-r--r--
memory.py
606
B
-rw-r--r--
network.py
1.66
KB
-rw-r--r--
processes.py
896
B
-rw-r--r--
sysinfo.py
9.67
KB
-rw-r--r--
temperature.py
806
B
-rw-r--r--
testplugin.py
541
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : temperature.py
from twisted.internet.defer import succeed from landscape.lib.sysstats import get_thermal_zones class Temperature(object): def __init__(self, thermal_zone_path=None): self._thermal_zone_path = thermal_zone_path def register(self, sysinfo): self._sysinfo = sysinfo def run(self): temperature = None max_value = None for zone in get_thermal_zones(self._thermal_zone_path): if (zone.temperature_value is not None and (max_value is None or zone.temperature_value > max_value) ): temperature = zone.temperature max_value = zone.temperature_value if temperature is not None: self._sysinfo.add_header("Temperature", temperature) return succeed(None)
Close