Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
share /
nodejs /
@npmcli /
git /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
clone.js
4.75
KB
-rw-r--r--
errors.js
599
B
-rw-r--r--
find.js
300
B
-rw-r--r--
index.js
241
B
-rw-r--r--
is-clean.js
222
B
-rw-r--r--
is.js
271
B
-rw-r--r--
lines-to-revs.js
3.94
KB
-rw-r--r--
make-error.js
859
B
-rw-r--r--
opts.js
369
B
-rw-r--r--
proc-log.js
349
B
-rw-r--r--
revs.js
640
B
-rw-r--r--
spawn.js
1.28
KB
-rw-r--r--
utils.js
109
B
-rw-r--r--
which.js
323
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : spawn.js
const spawn = require('@npmcli/promise-spawn') const promiseRetry = require('promise-retry') const makeError = require('./make-error.js') const whichGit = require('./which.js') const makeOpts = require('./opts.js') const procLog = require('./proc-log.js') module.exports = (gitArgs, opts = {}) => { const gitPath = whichGit(opts) if (gitPath instanceof Error) { return Promise.reject(gitPath) } // undocumented option, mostly only here for tests const args = opts.allowReplace || gitArgs[0] === '--no-replace-objects' ? gitArgs : ['--no-replace-objects', ...gitArgs] const log = opts.log || procLog let retry = opts.retry if (retry === null || retry === undefined) { retry = { retries: opts.fetchRetries || 2, factor: opts.fetchRetryFactor || 10, maxTimeout: opts.fetchRetryMaxtimeout || 60000, minTimeout: opts.fetchRetryMintimeout || 1000 } } return promiseRetry((retry, number) => { if (number !== 1) { log.silly('git', `Retrying git command: ${ args.join(' ')} attempt # ${number}`) } return spawn(gitPath, args, makeOpts(opts)) .catch(er => { const gitError = makeError(er) if (!gitError.shouldRetry(number)) { throw gitError } retry(gitError) }) }, retry) }
Close