
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@hemia/auth-sso
Advanced tools
Autenticación SSO centralizada para entornos multiaplicación desarrollados con Node.js
Cliente de autenticación Single Sign-On (SSO) para entornos web multiaplicación. Este paquete permite validar sesiones, iniciar login usando PKCE, manejar el callback de autenticación, refrescar sesiones y cerrar sesión de forma centralizada.
npm install @hemia/auth-sso
import { SSOClient } from '@hemia/auth-sso';
const sso = new SSOClient({
clientId: 'sistema1',
redirectUri: 'https://sistema1.com/callback',
ssoAuthUrl: 'https://sso.miempresa.com/authorize',
tokenEndpoint: 'https://sistema1.com/api/sso/token',
sessionEndpoint: 'https://sistema1.com/api/sso/check-session',
refreshEndpoint: 'https://sistema1.com/api/sso/refresh',
logoutEndpoint: 'https://sistema1.com/api/sso/logout',
logoutRedirectUrl: 'https://sistema1.com/',
scopes: ['openid', 'profile'],
apiKey: 'mi-api-key'
});
validateSession(): Promise<SSOSession>
Valida si la sesión actual sigue activa, usando una caché de TTL de 1 minuto para evitar llamadas excesivas.
const session = await sso.validateSession();
if (!session.isAuthenticated) {
sso.startLogin();
}
startLogin(auto?: boolean, skip?: boolean): Promise<void>
Redirige al usuario al flujo de autenticación del SSO usando PKCE.
sso.startLogin(); // auto y skip son opcionales
handleCallback(): Promise<{ success: boolean; message?: string, brokenSession?: boolean }>
Procesa el callback del servidor SSO después de la redirección e intercambia el código de autorización por un token de sesión.
const result = await sso.handleCallback();
if (!result.success) {
console.error(result.message);
}
refreshToken(): Promise<boolean>
Renueva la sesión actual usando el token de sesión. Ideal para mantener sesiones activas sin necesidad de login constante.
const ok = await sso.refreshToken();
logout(): Promise<void>
Cierra la sesión actual tanto en el cliente como en el backend del sistema, y redirige al usuario.
await sso.logout();
code_challenge
y code_verifier
).localStorage
.SSOConfig
interface SSOConfig {
clientId: string;
redirectUri: string;
ssoAuthUrl: string;
tokenEndpoint: string;
sessionEndpoint: string;
refreshEndpoint?: string;
logoutEndpoint?: string;
logoutRedirectUrl?: string;
scopes: string[];
apiKey?: string;
}
MIT
FAQs
Autenticación SSO centralizada para entornos multiaplicación desarrollados con Node.js
We found that @hemia/auth-sso demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.