Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
amps-kerberos-authenticator
Advanced tools
npm install --save amps-kerberos-authenticator
amps-kerberos-authenticator
depends on the amps
and kerberos
packages. In case of the installation from NPM,
all the dependencies are installed automatically.
AMPS SPN (for example, AMPS/host.domain.com
)
Optionally set Kerberos environment variables
KRB5_CONFIG
set to a krb5.conf file that will override the default (the default is /etc/krb5.conf
on linux)KRB5_CLIENT_KTNAME
set to a KeyTab for the user you want to authentication asIn Node.js, environment variables can be set in the source code:
process.env['KRB5_CONFIG'] = '/path/to/krb5.conf';
process.env['KRB5_CLIENT_KTNAME'] = '/path/to/client_name.keytab';
For Kerberos authentication using JavaScript there is a single class, AMPSKerberosAuthenticator
,
for authentication in Node.js environment.
const Client = require('amps').Client;
const AMPSKerberosAuthenticator = require('amps-kerberos-authenticator').AMPSKerberosAuthenticator;
async function main() {
const client = new Client('demo');
// connection credentials
const login = 'username';
const port = 10304;
const hostName = 'hostname';
const uri = `ws://${login}@${hostName}:${port}/amps/json`;
const spn = `AMPS/${hostName}`;
try {
// connect
await client.connect(uri, new AMPSKerberosAuthenticator(spn));
}
catch (err) {
console.error('err: ', err);
}
}
main();
Kerberos Authentication Blog Article
libamps_multi_authentication AMPS Server Module
FAQs
AMPS Kerberos Authenticator
The npm package amps-kerberos-authenticator receives a total of 4 weekly downloads. As such, amps-kerberos-authenticator popularity was classified as not popular.
We found that amps-kerberos-authenticator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.