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 /
auth /
[ HOME SHELL ]
Name
Size
Permission
Action
legacy.js
2.45
KB
-rw-r--r--
oauth.js
182
B
-rw-r--r--
saml.js
181
B
-rw-r--r--
sso.js
1.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sso.js
var log = require('npmlog') var npm = require('../npm.js') var output = require('../utils/output') var opener = require('opener') module.exports.login = function login (creds, registry, scope, cb) { var ssoType = npm.config.get('sso-type') if (!ssoType) { return cb(new Error('Missing option: sso-type')) } var params = { // We're reusing the legacy login endpoint, so we need some dummy // stuff here to pass validation. They're never used. auth: { username: 'npm_' + ssoType + '_auth_dummy_user', password: 'placeholder', email: 'support@npmjs.com', authType: ssoType } } npm.registry.adduser(registry, params, function (er, doc) { if (er) return cb(er) if (!doc || !doc.token) return cb(new Error('no SSO token returned')) if (!doc.sso) return cb(new Error('no SSO URL returned by services')) output('If your browser doesn\'t open, visit ' + doc.sso + ' to complete authentication') opener(doc.sso, { command: npm.config.get('browser') }, function () { pollForSession(registry, doc.token, function (err, username) { if (err) return cb(err) log.info('adduser', 'Authorized user %s', username) var scopeMessage = scope ? ' to scope ' + scope : '' output('Logged in as %s%s on %s.', username, scopeMessage, registry) cb(null, { token: doc.token }) }) }) }) } function pollForSession (registry, token, cb) { log.info('adduser', 'Polling for validated SSO session') npm.registry.whoami(registry, { auth: { token: token } }, function (er, username) { if (er && er.statusCode !== 401) { cb(er) } else if (!username) { setTimeout(function () { pollForSession(registry, token, cb) }, npm.config.get('sso-poll-frequency')) } else { cb(null, username) } }) }
Close