-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrat.c
71 lines (55 loc) · 1.35 KB
/
rat.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define BUFFER_SIZE 256
int main(int argc, char *argv[])
{
if (argc < 3) {
fprintf(stderr, "Usage: %s [IP] [PORT]\n", argv[0]);
exit(1);
}
char *host = argv[1];
int port = atoi(argv[2]);
int sockfd;
struct sockaddr_in serv_addr;
if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
perror("Error creating socket");
exit(1);
}
memset(&serv_addr, 0, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(port);
if (inet_pton(AF_INET, host, &serv_addr.sin_addr) <= 0) {
perror("Error converting address");
exit(1);
}
if (connect(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) {
perror("Error connecting to host");
exit(1);
}
printf("Connected to %s:%d\n", host, port);
char buffer[BUFFER_SIZE];
while (1) {
printf("Enter command: ");
fgets(buffer, BUFFER_SIZE, stdin);
if (send(sockfd, buffer, strlen(buffer), 0) < 0) {
perror("Error sending command");
break;
}
int n = recv(sockfd, buffer, BUFFER_SIZE, 0);
if (n < 0) {
perror("Error receiving response");
break;
} else if (n == 0) {
printf("Connection closed by host.\n");
break;
}
printf("Response:\n%.*s\n", n, buffer);
}
close(sockfd);
return 0;
}