Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
This is an unofficial Zalo API for personal account. It work by simulating the browser to interact with Zalo Web.
disclaimer: We are not responsible if your account is locked or banned by Zalo. Use it at your own risk.
bun install zca-js # or npm install zca-js
import { Zalo } from "zca-js";
const zalo = new Zalo(
{
cookies: "your_cookies_here",
imei: "your_imei_here",
userAgent: "your_user_agent_here",
},
{
selfListen: false,
checkUpdate: true,
},
);
const api = await zalo.login();
Alternative: We also support J2TEAM Cookies extension:
import { Zalo } from "zca-js";
const zalo = new Zalo(
{
cookies: JSON.parse(fs.readFileSync("./cookies.json", "utf-8")),
imei: "your_imei_here",
userAgent: "your_user_agent_here",
},
{
selfListen: false,
checkUpdate: true,
},
);
const api = await zalo.login();
cookies
: Your Zalo cookies. You can get it by using J2TEAM Cookies extension or by using browser developer tools.imei
: Your IMEI created by Zalo. You can get it using browser developer tools: localStorage.getItem('z_uuid')
or localStorage.getItem('sh_z_uuid')
.userAgent
: Your browser user agent. Better be from the same browser you get cookies.selfListen
: Listen for messages sent by yourself. Default is false
.checkUpdate
: Check for zca-js update. Default is true
.import { Zalo, MessageType } from "zca-js";
const zalo = new Zalo(credentials);
const api = await zalo.login();
api.listener.on("message", (message) => {
const isPlainText = typeof message.data.content === "string";
switch (message.type) {
case MessageType.DirectMessage: {
if (isPlainText) {
// received plain text direct message
}
break;
}
case MessageType.GroupMessage: {
if (isPlainText) {
// received plain text group message
}
break;
}
}
});
api.listener.start();
Note: Only one web listener can be started at a time. If you open Zalo
in the browser while the listener is running, the listener will be stopped.
import { Zalo, MessageType } from "zca-js";
const zalo = new Zalo(credentials);
const api = await zalo.login();
// Echo bot
api.listener.on("message", (message) => {
const isPlainText = typeof message.data.content === "string";
if (message.isSelf || !isPlainText) return;
switch (message.type) {
case MessageType.DirectMessage: {
api.sendMessage(
"echo: " + message.data.content,
message.threadId,
message.type, // MessageType.DirectMessage
message, // the message object to reply to (optional)
);
break;
}
case MessageType.GroupMessage: {
api.sendMessage(
"echo: " + message.data.content,
message.threadId,
message.type, // MessageType.GroupMessage
message, // the message object to reply to (optional)
);
break;
}
}
});
api.listener.start();
api.sendMessageAttachment(
"title",
[path.resolve("./assets/photo.png")], // array of file paths
message.threadId,
message.type, // MessageType.DirectMessage or MessageType.GroupMessage
);
api.getStickers("hello").then(async (stickerIds) => {
// Get the first sticker
const stickerObject = await api.getStickersDetail(stickerIds[0]);
api.sendMessageSticker(
stickerObject,
message.threadId,
message.type, // MessageType.DirectMessage or MessageType.GroupMessage
);
});
See examples folder for more details.
We welcome contributions from the community.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Unofficial Zalo API for JavaScript
The npm package zca-js receives a total of 132 weekly downloads. As such, zca-js popularity was classified as not popular.
We found that zca-js 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.