Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.225.55.210
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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 /
lib /
node_modules /
npm /
node_modules /
libnpmsearch /
[ HOME SHELL ]
Name
Size
Permission
Action
.travis.yml
72
B
-rw-r--r--
CHANGELOG.md
1.22
KB
-rw-r--r--
LICENSE
717
B
-rw-r--r--
PULL_REQUEST_TEMPLATE
183
B
-rw-r--r--
README.md
5.39
KB
-rw-r--r--
appveyor.yml
334
B
-rw-r--r--
index.js
1.72
KB
-rw-r--r--
package.json
2.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' const figgyPudding = require('figgy-pudding') const getStream = require('get-stream') const npmFetch = require('npm-registry-fetch') const SearchOpts = figgyPudding({ detailed: { default: false }, limit: { default: 20 }, from: { default: 0 }, quality: { default: 0.65 }, popularity: { default: 0.98 }, maintenance: { default: 0.5 }, sortBy: {} }) module.exports = search function search (query, opts) { return getStream.array(search.stream(query, opts)) } search.stream = searchStream function searchStream (query, opts) { opts = SearchOpts(opts) switch (opts.sortBy) { case 'optimal': { opts = opts.concat({ quality: 0.65, popularity: 0.98, maintenance: 0.5 }) break } case 'quality': { opts = opts.concat({ quality: 1, popularity: 0, maintenance: 0 }) break } case 'popularity': { opts = opts.concat({ quality: 0, popularity: 1, maintenance: 0 }) break } case 'maintenance': { opts = opts.concat({ quality: 0, popularity: 0, maintenance: 1 }) break } } return npmFetch.json.stream('/-/v1/search', 'objects.*', opts.concat({ query: { text: Array.isArray(query) ? query.join(' ') : query, size: opts.limit, from: opts.from, quality: opts.quality, popularity: opts.popularity, maintenance: opts.maintenance }, mapJson (obj) { if (obj.package.date) { obj.package.date = new Date(obj.package.date) } if (opts.detailed) { return obj } else { return obj.package } } }) ) }
Close