Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.144.13.165
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
gentle-fs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
bin-link.js
2.54
KB
-rw-r--r--
2021-03-10 14:36
chown.js
660
B
-rw-r--r--
2021-03-10 14:36
link.js
3.53
KB
-rw-r--r--
2021-03-10 14:36
mkdir.js
514
B
-rw-r--r--
2021-03-10 14:36
rm.js
7.63
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict' // A module for chowning things we just created, to preserve // ownership of new links and directories. const chownr = require('chownr') const selfOwner = { uid: process.getuid && process.getuid(), gid: process.getgid && process.getgid() } module.exports = (path, uid, gid, cb) => { if (selfOwner.uid !== 0 || uid === undefined || gid === undefined || (selfOwner.uid === uid && selfOwner.gid === gid)) { // don't need to, or can't chown anyway, so just leave it. // this also handles platforms where process.getuid is undefined return cb() } chownr(path, uid, gid, cb) } module.exports.selfOwner = selfOwner