Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
npm /
lib /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
bin-links.js
716
B
-rw-r--r--
clear-credentials-by-uri.js
423
B
-rw-r--r--
cmd-list.js
1.89
KB
-rw-r--r--
core.js
11.07
KB
-rw-r--r--
defaults.js
11.2
KB
-rw-r--r--
fetch-opts.js
1.93
KB
-rw-r--r--
gentle-fs.js
687
B
-rw-r--r--
get-credentials-by-uri.js
2
KB
-rw-r--r--
lifecycle.js
851
B
-rw-r--r--
load-cafile.js
682
B
-rw-r--r--
load-prefix.js
1.3
KB
-rw-r--r--
load-uid.js
386
B
-rw-r--r--
nerf-dart.js
471
B
-rw-r--r--
pacote.js
4.03
KB
-rw-r--r--
reg-client.js
788
B
-rw-r--r--
set-credentials-by-uri.js
1.24
KB
-rw-r--r--
set-user.js
749
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fetch-opts.js
'use strict' const url = require('url') module.exports.fromPacote = fromPacote function fromPacote (opts) { return { cache: getCacheMode(opts), cacheManager: opts.cache, ca: opts.ca, cert: opts.cert, headers: getHeaders('', opts.registry, opts), key: opts.key, localAddress: opts.localAddress, maxSockets: opts.maxSockets, proxy: opts.proxy, referer: opts.refer, retry: opts.retry, strictSSL: !!opts.strictSSL, timeout: opts.timeout, uid: opts.uid, gid: opts.gid } } function getCacheMode (opts) { return opts.offline ? 'only-if-cached' : opts.preferOffline ? 'force-cache' : opts.preferOnline ? 'no-cache' : 'default' } function getHeaders (uri, registry, opts) { const headers = Object.assign({ 'npm-in-ci': opts.isFromCI, 'npm-scope': opts.projectScope, 'npm-session': opts.npmSession, 'user-agent': opts.userAgent, 'referer': opts.refer }, opts.headers) // check for auth settings specific to this registry let auth = ( opts.auth && opts.auth[registryKey(registry)] ) || opts.auth // If a tarball is hosted on a different place than the manifest, only send // credentials on `alwaysAuth` const shouldAuth = auth && ( auth.alwaysAuth || url.parse(uri).host === url.parse(registry).host ) if (shouldAuth && auth.token) { headers.authorization = `Bearer ${auth.token}` } else if (shouldAuth && auth.username && auth.password) { const encoded = Buffer.from( `${auth.username}:${auth.password}`, 'utf8' ).toString('base64') headers.authorization = `Basic ${encoded}` } else if (shouldAuth && auth._auth) { headers.authorization = `Basic ${auth._auth}` } return headers } function registryKey (registry) { const parsed = url.parse(registry) const formatted = url.format({ host: parsed.host, pathname: parsed.pathname, slashes: parsed.slashes }) return url.resolve(formatted, '.') }
Close