Linux taon.o2switch.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
LiteSpeed
Server IP : 109.234.166.246 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : mhxr7844
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
fileattrs
[ DIR ]
drwxr-xr-x
2025-05-13 06:09
macros.d
[ DIR ]
drwxr-xr-x
2026-06-18 06:00
platform
[ DIR ]
drwxr-xr-x
2024-12-17 05:11
redhat
[ DIR ]
drwxr-xr-x
2025-08-29 06:08
alt-nodejs10_native.req
70
B
-rwxr-xr-x
2023-03-22 12:24
alt-nodejs11_native.req
70
B
-rwxr-xr-x
2021-10-19 12:09
alt-nodejs12_native.req
70
B
-rwxr-xr-x
2026-03-09 08:28
alt-nodejs14_native.req
70
B
-rwxr-xr-x
2026-02-22 21:47
alt-nodejs16_native.req
40
B
-rwxr-xr-x
2026-03-17 08:06
alt-nodejs19-fixdep
3.49
KB
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19-provide.sh
70
B
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19-require.sh
69
B
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19-symlink-deps
5.23
KB
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19.prov
1.93
KB
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19.req
6.76
KB
-rwxr-xr-x
2022-11-22 14:08
alt-nodejs19_native.req
39
B
-rwxr-xr-x
2023-12-06 19:26
alt-nodejs22_native.req
40
B
-rwxr-xr-x
2026-06-23 15:32
alt-nodejs6_native.req
64
B
-rwxr-xr-x
2021-09-28 11:41
alt-nodejs8_native.req
68
B
-rwxr-xr-x
2021-09-28 12:55
alt-nodejs9_native.req
68
B
-rwxr-xr-x
2021-09-28 13:57
brp-scl-compress
1.77
KB
-rwxr-xr-x
2017-08-25 10:23
brp-scl-python-bytecompile
3.04
KB
-rwxr-xr-x
2017-08-25 10:23
kabi.sh
468
B
-rwxr-xr-x
2023-05-15 16:30
kmod.prov
682
B
-rwxr-xr-x
2023-05-15 16:30
macros
42.96
KB
-rw-r--r--
2024-12-17 05:11
nodejs_native.req
70
B
-rwxr-xr-x
2021-03-10 15:47
python-macro-helper
634
B
-rw-r--r--
2024-12-17 05:11
pythondeps.sh
921
B
-rwxr-xr-x
2023-03-31 17:44
pythondistdeps.py
10.92
KB
-rwxr-xr-x
2023-03-31 17:44
rpm.daily
296
B
-rw-r--r--
2024-12-17 05:11
rpm.log
61
B
-rw-r--r--
2024-12-17 05:11
rpm.supp
688
B
-rw-r--r--
2024-12-17 05:11
rpm2cpio.sh
1.22
KB
-rwxr-xr-x
2024-12-17 05:11
rpmdb_loadcvt
1.43
KB
-rwxr-xr-x
2024-12-17 05:11
rpmpopt-4.14.3
11.2
KB
-rw-r--r--
2024-12-17 05:11
rpmrc
16.75
KB
-rw-r--r--
2024-12-17 05:11
rubygems.con
1.46
KB
-rwxr-xr-x
2023-06-06 16:55
rubygems.prov
870
B
-rwxr-xr-x
2023-06-06 16:55
rubygems.req
2.73
KB
-rwxr-xr-x
2025-04-28 19:36
scldeps.sh
254
B
-rwxr-xr-x
2017-08-25 10:23
tgpg
929
B
-rwxr-xr-x
2024-12-17 05:11
Save
Rename
#!/usr/libexec/platform-python """ Automatic provides generator for Node.js libraries. Taken from package.json. See `man npm-json` for details. """ # Copyright 2012 T.C. Hollingsworth <tchollingsworth@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import json import subprocess import sys paths = [path.rstrip() for path in sys.stdin.readlines()] for path in paths: if path.endswith('package.json'): fh = open(path) metadata = json.load(fh) fh.close() if 'name' in metadata and not ('private' in metadata and metadata['private']): print 'alt-nodejs18-npm(' + metadata['name'] + ')', if 'version' in metadata: print '= ' + metadata['version'] else: print # invoke the regular RPM provides generator p = subprocess.Popen(['/usr/lib/rpm/find-provides'], stdout=subprocess.PIPE, stdin=subprocess.PIPE) print p.communicate(input='\n'.join(paths))[0]