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.
redis-baileys
Advanced tools
Save your Baileys session in Redis DB using this powerful and efficient package!
npm install redis-baileys
or
yarn add redis-baileys
import { useRedisAuthState } from 'redis-baileys';
import { Boom } from '@hapi/boom';
import makeWASocket, { DisconnectReason } from '@whiskeysockets/baileys';
async function connectToWhatsApp() {
const redisConfig = {
password: 'your_redis_password',
host: 'your_redis_host',
port: 6379,
};
const { state, saveCreds } = await useRedisAuthState(redisConfig, 'your_session_id');
const sock = makeWASocket({
auth: state,
printQRInTerminal: true,
});
sock.ev.on('connection.update', (update) => {
const { connection, lastDisconnect } = update;
if (connection === 'close') {
const shouldReconnect = (lastDisconnect?.error as Boom)?.output?.statusCode !== DisconnectReason.loggedOut;
console.log('connection closed due to ', lastDisconnect?.error, ', reconnecting ', shouldReconnect);
if (shouldReconnect) {
connectToWhatsApp();
}
} else if (connection === 'open') {
console.log('opened connection');
}
});
sock.ev.on('creds.update', saveCreds);
}
connectToWhatsApp();
const { useRedisAuthState } = require('redis-baileys');
const { Boom } = require('@hapi/boom');
const makeWASocket = require('@whiskeysockets/baileys').default;
async function connectToWhatsApp() {
const redisConfig = {
password: 'your_redis_password',
host: 'your_redis_host',
port: 6379,
};
const { state, saveCreds } = await useRedisAuthState(redisConfig, 'your_session_id');
const sock = makeWASocket({
auth: state,
printQRInTerminal: true,
});
sock.ev.on('connection.update', (update) => {
const { connection, lastDisconnect } = update;
if (connection === 'close') {
const shouldReconnect = (lastDisconnect?.error instanceof Boom) && lastDisconnect.error.output.statusCode !== DisconnectReason.loggedOut;
console.log('connection closed due to ', lastDisconnect?.error, ', reconnecting ', shouldReconnect);
if (shouldReconnect) {
connectToWhatsApp();
}
} else if (connection === 'open') {
console.log('opened connection');
}
});
sock.ev.on('creds.update', saveCreds);
}
connectToWhatsApp();
useRedisAuthState(redisConfig, sessionId)
Creates and manages the authentication state using Redis.
redisConfig
: An object containing Redis connection details (password, host, port).sessionId
: A unique identifier for the session.Returns an object with:
state
: The current authentication state.saveCreds
: A function to save credentials.deleteSession
: A function to delete the current session.For more detailed documentation, please visit our Wiki.
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
Made with ❤️ by HacxK
FAQs
Save your baileys session in redisdb using this package
The npm package redis-baileys receives a total of 4 weekly downloads. As such, redis-baileys popularity was classified as not popular.
We found that redis-baileys demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.