@zetagoaurum-socket/wasocket
v3.2.7
Published
WhatsApp API Modification ZetaGo
Maintainers
Readme
ZetaGo-Aurum WaSocket
The Ultimate WhatsApp Socket Connection Library Premium. Secure. Stylish. Meta Verified.
Features • Installation • Usage • Safety
🌟 Introduction
ZetaGo-Aurum WaSocket is a high-performance, modified version of the Baileys library, engineered for stability, security, and human-like behavior. featuring Meta Verified mimicry, Stylish Console, and Auto-Follow support.
🚀 Key Features
💎 Exclusive Features
- Meta Verified Fake: Automatically injects "Enterprise" and "Verified" attributes into messages, making your bot look like a verified business.
- Persistent Auto-Follow: Built-in script that keeps your bot subscribed to developer channels (Credits support).
- Stylish TUI: Beautiful colored console output with ASCII art and clear error logs (
ANTI-KILL). - Auto-Update: Checks for the latest version on startup.
🚀 Key Features
🛡️ Unmatched Security (Anti-Ban)
- Browser Masquerading: Identifies as a legitimate Chrome browser on Windows (
Windows,Chrome,22.0.0.0) instead of a generic bot signature. - Traffic Jitter: Implemented randomized timing for "keep-alive" pings (1-6s jitter) to disrupt robotic traffic pattern analysis.
- Human Latency: Increased default timeouts (
connectTimeoutMs: 60s) to mimic human network behavior. - Trust Score: Enabled
syncFullHistoryandgenerateHighQualityLinkPreviewto behave more like a legitimate "Companion" device.
🔗 Robust Custom Pairing
- Universal Compatibility: Custom pairing code input is now auto-sanitized (removes non-alphanumeric chars) and normalized.
- Flexibility: Works seamlessly with any pairing number or custom key format.
🤖 AI-Enhanced Humanization
- Smart Jitter: Every packet is sent with micro-randomized delays to mimic human interaction.
- Clean Fingerprint: Removed all legacy tracking codes and "bot" markers.
⚡ Professional Performance
- Anti-Crash Architecture: Global error handlers prevent the process from dying.
- High Stability: Optimized for long-running sessions with automatic reconnection logic.
📦 Installation
Install the package directly from your project:
npm install @zetagoaurum-socket/wasocket
# or install directly from GitHub (Recommended if NPM fails)
npm install github:ZetaGo-Aurum/baileys-V1
# or
yarn add github:ZetaGo-Aurum/baileys-V1
# or
yarn add @zetagoaurum-socket/zetago-aurum-socket🛠️ Usage
Simply import makeWASocket exactly as you would with standard Baileys. The enhancements work automagically in the background.
const { default: makeWASocket, useMultiFileAuthState } = require('@zetagoaurum-socket/zetago-aurum-socket');
async function connectToWhatsApp() {
const { state, saveCreds } = await useMultiFileAuthState('auth_info_baileys');
const sock = makeWASocket({
auth: state,
printQRInTerminal: !usePairingCode, // Set to false if using pairing code
// Browser masquerading is handled automatically!
});
if (usePairingCode && !sock.authState.creds.registered) {
// Pairing code is now robust and handles formatting automatically!
const code = await sock.requestPairingCode('6281234567890');
console.log(`Pairing code: ${code}`);
}
sock.ev.on('creds.update', saveCreds);
sock.ev.on('connection.update', (update) => {
const { connection, lastDisconnect } = update;
if(connection === 'close') {
const shouldReconnect = 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');
}
});
}
connectToWhatsApp();🛡️ Safety & Anti-Ban Details
We take account safety seriously. ZetaGo-Aurum-Socket implements:
- Packet Inspection Prevention: Headers are normalized to look like official clients.
- Rate Limiting: Built-in delays prevent you from sending messages too fast (the #1 cause of bans).
- Clean Dependencies: We removed all dubious "peer dependencies" that were present in previous forks.
📜 License
This project is licensed under the MIT License - see the LICENSE file for details.
