-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (46 loc) · 2.59 KB
/
index.js
File metadata and controls
62 lines (46 loc) · 2.59 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
const rl = require('readline-sync');
const colors = require('colors');
const title = require('./modules/title.js');
const fastBomber = require('./modules/sms.js');
const { printBanner, printHackerLine, printStats } = require('./modules/ascii.js');
const { loadingAnimation, typeWriter } = require('./modules/animations.js');
global.request = require('request');
global.axios = require('axios');
global.faker = require('faker');
global.dayjs = require('dayjs');
global.fs = require('fs');
global.chalk = require('chalk');
async function main() {
printBanner();
await loadingAnimation('Initializing hacker modules', 2000);
await loadingAnimation('Loading target acquisition systems', 1500);
await loadingAnimation('Connecting to anonymous networks', 2000);
console.log(chalk.red('\n[SYSTEM] All systems operational. Ready for mission.\n'));
console.log(chalk.yellow('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'));
let telefon = rl.question(chalk.red.bold('[TARGET] ') + chalk.white('Enter phone number (+90): '));
if (telefon.length != 10) {
console.log(chalk.red('❌ [ERROR] Phone number must be 10 digits. Ex: 5401234521'));
process.exit(1);
}
title('Target Acquired: ' + telefon);
console.log(chalk.yellow('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'));
let miktar = rl.question(chalk.red.bold('[PAYLOAD] ') + chalk.white('How many SMS bombs to deploy: '));
if(isNaN(miktar)) {
console.log(chalk.red('❌ [ERROR] Please enter a valid number'));
process.exit(1);
}
if (miktar.length == 0) {
console.log(chalk.red('❌ [ERROR] Payload count required'));
process.exit(1);
}
title(`Target: ${telefon} - Payload: ${miktar}`);
printStats(telefon, miktar);
console.log(chalk.red.bold('🚀 MISSION COUNTDOWN INITIATED...'));
for(let i = 5; i > 0; i--) {
console.log(chalk.red.bold(`[${i}] Launching in ${i} seconds...`));
await new Promise(resolve => setTimeout(resolve, 1000));
}
console.log(chalk.green.bold('🔥 MISSION STARTED - SMS BOMBING IN PROGRESS 🔥\n'));
await fastBomber(telefon, miktar);
}
main().catch(console.error);