Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.6 /
site-packages /
up2date_client /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-18 14:33
__init__.py
0
B
-rw-r--r--
2024-04-03 16:31
capabilities.py
7.28
KB
-rw-r--r--
2024-04-03 16:31
cldetect.py
2.97
KB
-rw-r--r--
2024-04-03 16:31
clientCaps.py
2.16
KB
-rw-r--r--
2024-04-03 16:31
clpwd.py
3.56
KB
-rw-r--r--
2024-04-03 16:31
config.py
12.5
KB
-rw-r--r--
2024-04-03 16:31
debUtils.py
2.73
KB
-rw-r--r--
2024-04-03 16:31
getMethod.py
4.2
KB
-rw-r--r--
2024-04-03 16:31
haltree.py
4.53
KB
-rw-r--r--
2024-04-03 16:31
hardware.py
31.91
KB
-rw-r--r--
2024-04-03 16:31
hardware_gudev.py
12.89
KB
-rw-r--r--
2024-04-03 16:31
hardware_hal.py
11.32
KB
-rw-r--r--
2024-04-03 16:31
hardware_udev.py
12.99
KB
-rw-r--r--
2024-04-03 16:31
pkgUtils.py
295
B
-rw-r--r--
2024-04-03 16:31
pkgplatform.py
309
B
-rw-r--r--
2024-04-03 18:16
pmPlugin.py
2.79
KB
-rw-r--r--
2024-04-03 16:31
rhnChannel.py
4.4
KB
-rw-r--r--
2024-04-03 16:31
rhnHardware.py
328
B
-rw-r--r--
2024-04-03 16:31
rhnPackageInfo.py
2.04
KB
-rw-r--r--
2024-04-03 16:31
rhncli.py
9.12
KB
-rw-r--r--
2024-04-03 16:31
rhnreg.py
32.13
KB
-rw-r--r--
2024-04-03 16:31
rhnreg_constants.py
18.13
KB
-rw-r--r--
2024-04-03 16:31
rhnserver.py
8.66
KB
-rw-r--r--
2024-04-03 16:31
rpcServer.py
10.96
KB
-rw-r--r--
2024-04-03 16:31
rpmUtils.py
5.2
KB
-rw-r--r--
2024-04-03 16:31
transaction.py
4.09
KB
-rw-r--r--
2024-04-03 16:31
tui.py
43.7
KB
-rw-r--r--
2024-04-03 16:31
up2dateAuth.py
6.85
KB
-rw-r--r--
2024-04-03 16:31
up2dateErrors.py
10.26
KB
-rw-r--r--
2024-04-03 16:31
up2dateLog.py
2.06
KB
-rw-r--r--
2024-04-03 16:31
up2dateUtils.py
5.06
KB
-rw-r--r--
2024-04-03 18:16
Save
Rename
# all the crap that is stored on the rhn side of stuff # updating/fetching package lists, channels, etc from up2date_client import up2dateAuth from up2date_client import up2dateLog from up2date_client import rhnserver from up2date_client import pkgUtils def logDeltaPackages(pkgs): log = up2dateLog.initLog() log.log_me("Adding packages to package profile: %s" % pprint_pkglist(pkgs['added'])) log.log_me("Removing packages from package profile: %s" % pprint_pkglist(pkgs['removed'])) def updatePackageProfile(timeout=None): """ get a list of installed packages and send it to rhnServer """ log = up2dateLog.initLog() log.log_me("Updating package profile") packages = pkgUtils.getInstalledPackageList(getArch=1) s = rhnserver.RhnServer(timeout=timeout) if not s.capabilities.hasCapability('xmlrpc.packages.extended_profile', 2): # for older satellites and hosted - convert to old format packages = convertPackagesFromHashToList(packages) s.registration.update_packages(up2dateAuth.getSystemId(), packages) def pprint_pkglist(pkglist): if type(pkglist) == type([]): output = ["%s-%s-%s" % (a[0],a[1],a[2]) for a in pkglist] else: output = "%s-%s-%s" % (pkglist[0], pkglist[1], pkglist[2]) return output def convertPackagesFromHashToList(packages): """ takes list of hashes and covert it to list of lists resulting strucure is: [[name, version, release, epoch, arch, cookie], ... ] """ result = [] for package in packages: if 'arch' in package and 'cookie' in package: result.append([package['name'], package['version'], package['release'], package['epoch'], package['arch'], package['cookie']]) elif 'arch' in package: result.append([package['name'], package['version'], package['release'], package['epoch'], package['arch']]) else: result.append([package['name'], package['version'], package['release'], package['epoch']]) return result