forked from ChrishSec/Honeypot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
honypot.c
63 lines (51 loc) · 1.27 KB
/
honypot.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
// DEVELOPED BY >> MrAlien1337 👽️
#include <stdio.h>
#include <sys/socket.h>
#include <unistd.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#define PORT 80 // Change the port according to your choice
int main(int argc, const *argv[])
{
int server_fd,new_socket;
long valread;
struct sockaddr_in address;
int addrlen = sizeof(address);
char *honypot = "Your IP and other information have been logged !!!";
if((server_fd = socket(AF_INET, SOCK_STREAM,0)) == 0)
{
perror("In socket");
exit(EXIT_FAILURE);
}
address.sin_family = AF_INET;
address.sin_addr.s_addr = INADDR_ANY;
address.sin_port = htons(PORT);
memset(address.sin_zero, '\0', sizeof address.sin_zero);
if (bind(server_fd,(struct sockaddr *)&address, sizeof(address))<0)
{
perror("In bind");
exit(EXIT_FAILURE);
}
if(listen(server_fd,10)<0)
{
perror("In listen");
exit(EXIT_FAILURE);
}
printf("\n [+] Starting Honeypot \n\n");
while(1)
{
if((new_socket = accept(server_fd,(struct sockaddr *)&address, (socklen_t*)&addrlen))<0)
{
perror("In accept");
exit(EXIT_FAILURE);
}
char buffer[30000] = {0};
valread = read( new_socket, buffer, 30000);
printf("%s",buffer);
printf("\n======================================\n\n\n");
write(new_socket, honypot, strlen(honypot));
close(new_socket);
}
return 0;
}