forked from NytroRST/ShellcodeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionCalls.cpp
More file actions
596 lines (486 loc) · 21.2 KB
/
FunctionCalls.cpp
File metadata and controls
596 lines (486 loc) · 21.2 KB
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
#include "FunctionCalls.h"
// Static members
const int FunctionCalls::PARAMETER_TYPE_INT = 0;
const int FunctionCalls::PARAMETER_TYPE_STRING = 1;
size_t FunctionCalls::AllFunctionCallsNr;
vector<FunctionCalls::FunctionCall> FunctionCalls::AllFunctionCalls;
bool FunctionCalls::FirstFunctionCall = true;
// Add function call name
void FunctionCalls::AddFunctionCallName(string p_sFunctionName)
{
FunctionCall Function;
Function.Name = p_sFunctionName;
AllFunctionCalls.push_back(Function);
if (FirstFunctionCall) FirstFunctionCall = false;
else AllFunctionCallsNr++;
}
// Add function call int parameter
void FunctionCalls::AddFunctionCallIntParameter(string p_sIntParameter)
{
Parameter Param;
Param.Type = PARAMETER_TYPE_INT;
Param.IntValue = (size_t)stoll(p_sIntParameter);
AllFunctionCalls[AllFunctionCallsNr].Parameters.push_back(Param);
}
// Add function call string parameter
void FunctionCalls::AddFunctionCallStringParameter(string p_sStringParameter)
{
Parameter Param;
Param.Type = PARAMETER_TYPE_STRING;
Param.StringValue = p_sStringParameter;
AllFunctionCalls[AllFunctionCallsNr].Parameters.push_back(Param);
}
// Check if a function exists
bool FunctionCalls::FunctionExists(string p_sFunctionName)
{
for (size_t i = 0; i < DeclaredFunctions::AllDeclaredFunctions.size(); i++)
if (DeclaredFunctions::AllDeclaredFunctions[i].Name.compare(p_sFunctionName) == 0) return true;
return false;
}
// Put a string (function parameter) on the stack for x86
string FunctionCalls::GeneratePutStringToStack_x86(string p_sString)
{
string sContent = "";
size_t Len = p_sString.length();
// Check if the string was already on the stack
if (StringOffsetAddress::StringOffsetExists(p_sString)) return "";
if (Len % 4 == 0)
{
sContent = "xor eax, eax ; EAX = 0 \r\n";
sContent += "push eax ; NULL on the stack \r\n";
}
else if (Len % 4 == 1)
{
sContent = "xor eax, eax\r\n";
sContent += "mov al, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += "\r\n";
sContent += "push eax\r\n";
}
else if (Len % 4 == 2)
{
sContent = "xor eax, eax\r\n";
sContent += "mov ax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += "\r\n";
sContent += "push eax\r\n";
}
else if (Len % 4 == 3)
{
sContent = "xor eax, eax\r\n";
sContent += "mov eax, 0x23";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += "\r\n";
sContent += "push eax\r\n";
sContent += "sub dword [esp + 3], 0x23\r\n";
}
else cout << "Imaginary number?" << endl;
// Put the string as hex data pushes on the stack
size_t Times = Len / 4;
for (size_t i = Times; i > 0; i--)
{
sContent += "push 0x";
for (size_t j = 4; j > 0; j--)
{
sContent += Utils::CharToHexString(p_sString[i * 4 - 4 + j - 1]);
}
sContent += "\r\n";
}
// Add string offset
sContent += "push esp\r\n\r\n";
StringOffsetAddress::CurrentStringOffset = StringOffsetAddress::CurrentStringOffset + Times + 2;
StringOffsetAddress::AddStringOffset(p_sString);
return sContent;
}
// Put a string (function parameter) on the stack for x64
string FunctionCalls::GeneratePutStringToStack_x64(string p_sString)
{
string sContent = "";
size_t Len = p_sString.length();
// Check if the string was already on the stack
if (StringOffsetAddress::StringOffsetExists(p_sString)) return "";
if (Len % 8 == 0)
{
sContent = "xor rax, rax ; EAX = 0 \r\n";
sContent += "push rax ; NULL on the stack \r\n";
}
else if (Len % 8 == 1)
{
sContent = "xor rax, rax\r\n";
sContent += "mov al, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 2)
{
sContent = "xor rax, rax\r\n";
sContent += "mov ax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 3)
{
sContent = "xor rax, rax\r\n";
sContent += "mov eax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 4)
{
sContent = "xor rax, rax\r\n";
sContent += "mov eax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += Utils::CharToHexString(p_sString[Len - 4]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 5)
{
sContent = "xor rax, rax\r\n";
sContent += "mov rax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += Utils::CharToHexString(p_sString[Len - 4]);
sContent += Utils::CharToHexString(p_sString[Len - 5]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 6)
{
sContent = "xor rax, rax\r\n";
sContent += "mov rax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += Utils::CharToHexString(p_sString[Len - 4]);
sContent += Utils::CharToHexString(p_sString[Len - 5]);
sContent += Utils::CharToHexString(p_sString[Len - 6]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else if (Len % 8 == 7)
{
sContent = "xor rax, rax\r\n";
sContent += "mov rax, 0x";
sContent += Utils::CharToHexString(p_sString[Len - 1]);
sContent += Utils::CharToHexString(p_sString[Len - 2]);
sContent += Utils::CharToHexString(p_sString[Len - 3]);
sContent += Utils::CharToHexString(p_sString[Len - 4]);
sContent += Utils::CharToHexString(p_sString[Len - 5]);
sContent += Utils::CharToHexString(p_sString[Len - 6]);
sContent += Utils::CharToHexString(p_sString[Len - 7]);
sContent += "\r\n";
sContent += "push rax\r\n";
}
else cout << "Imaginary number?" << endl;
// Put the string as hex data pushes on the stack
size_t Times = Len / 8;
for (size_t i = Times; i > 0; i--)
{
sContent += "mov rax, 0x";
for (size_t j = 8; j > 0; j--)
{
sContent += Utils::CharToHexString(p_sString[i * 8 - 8 + j - 1]);
}
sContent += "\r\n";
sContent += "push rax\r\n";
}
// Add string offset
sContent += "push rsp\r\n\r\n";
StringOffsetAddress::CurrentStringOffset = StringOffsetAddress::CurrentStringOffset + Times + 2;
StringOffsetAddress::AddStringOffset(p_sString);
return sContent;
}
// Generate a function call
string FunctionCalls::GenerateFunctionCall(FunctionCalls::FunctionCall p_oFunctionCall)
{
if (Platform::GetPlatform() == PLATFORM_TYPE_LINUX_X86) return GenerateLinuxSyscall_x86(p_oFunctionCall);
else if (Platform::GetPlatform() == PLATFORM_TYPE_LINUX_X64) return GenerateLinuxSyscall_x64(p_oFunctionCall);
else if (Platform::GetPlatform() == PLATFORM_TYPE_WINDOWS_X64) return GenerateFunctionCall_x64(p_oFunctionCall);
else return GenerateFunctionCall_x86(p_oFunctionCall);
}
// Generate a function call for x86
string FunctionCalls::GenerateFunctionCall_x86(FunctionCalls::FunctionCall p_oFunctionCall)
{
string sContent = "";
size_t NrParam = p_oFunctionCall.Parameters.size();
size_t CurrentParamNr = 1;
// First, put all string parameters on the stack
for (size_t i = 0; i < p_oFunctionCall.Parameters.size(); i++)
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING) sContent += GeneratePutStringToStack_x86(p_oFunctionCall.Parameters[i].StringValue);
// Parse all arguments (from the end)
for (size_t i = NrParam - 1; NrParam; i--)
{
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING)
{
sContent += "push dword [ESP + ";
sContent += to_string(((CurrentParamNr - 1) * 4) + ((StringOffsetAddress::CurrentStringOffset - StringOffsetAddress::GetStringOffset(p_oFunctionCall.Parameters[i].StringValue)) * 4));
sContent += "]\r\n";
}
else if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_INT)
{
// If int parameter is 0, avoid NULL
if (p_oFunctionCall.Parameters[i].IntValue == 0)
{
sContent += "xor eax, eax\r\n";
sContent += "push eax\r\n";
}
else
{
sContent += "push 0x";
sContent += Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue);
sContent += "\r\n";
}
}
else cout << "Error: Undefined parameter type!" << endl;
CurrentParamNr++;
if (i == 0) break;
}
// Call function
sContent += "call [ESP + ";
sContent += to_string(((NrParam - 1) * 4) + (StringOffsetAddress::CurrentStringOffset * 4) + ((FunctionOffsetAddress::CurrentFunctionOffset - FunctionOffsetAddress::GetFunctionOffset(p_oFunctionCall.Name)) * 4));
sContent += "]\r\n";
// Clean string parameters
if (StringOffsetAddress::CurrentStringOffset > 0)
{
sContent += "add ESP, ";
sContent += to_string(StringOffsetAddress::CurrentStringOffset * 4);
sContent += "\r\n";
}
// Clean global strings data
StringOffsetAddress::CurrentStringOffset = 0;
StringOffsetAddress::StringOffsets.clear();
return sContent;
}
// Generate a function call for x64
string FunctionCalls::GenerateFunctionCall_x64(FunctionCalls::FunctionCall p_oFunctionCall)
{
string sContent = "";
size_t NrParam = p_oFunctionCall.Parameters.size();
size_t CurrentParamNr = 1;
size_t ParamsInRegisters = (NrParam >= 4) ? 4 : NrParam;
size_t AdjustStack = 0;
// First, put all string parameters on the stack
for (size_t i = 0; i < p_oFunctionCall.Parameters.size(); i++)
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING) sContent += GeneratePutStringToStack_x64(p_oFunctionCall.Parameters[i].StringValue);
// Align stack after strings are placed on the stack
AdjustStack = (StringOffsetAddress::CurrentStringOffset + (NrParam - ParamsInRegisters) + DeclaredFunctions::NrFunctionsToStack + DeclaredFunctions::NrBasesToStack ) % 2;
if (AdjustStack) sContent += "push r12 \r\n";
// Parse all arguments (from the end)
for (size_t i = NrParam - 1; NrParam; i--)
{
// We treat separatelty first 4 registers
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING)
{
size_t CurrentParamNotInRegisters = (CurrentParamNr > 4) ? (CurrentParamNr - 4) : ( (NrParam <= 4) ? 0 : (NrParam - 4));
string str_offset = to_string(((CurrentParamNotInRegisters) * 8) + ((StringOffsetAddress::CurrentStringOffset + AdjustStack - StringOffsetAddress::GetStringOffset(p_oFunctionCall.Parameters[i].StringValue)) * 8));
if(i == 0) sContent += "mov rcx, [RSP + " + str_offset + "] \r\n";
else if(i == 1) sContent += "mov rdx, [RSP + " + str_offset + "] \r\n";
else if(i == 2) sContent += "mov r8, [RSP + " + str_offset + "] \r\n";
else if(i == 3) sContent += "mov r9, [RSP + " + str_offset + "] \r\n";
else sContent += "push [RSP + " + str_offset + "]\r\n";
}
else if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_INT)
{
// If int parameter is 0, avoid NULL
if (p_oFunctionCall.Parameters[i].IntValue == 0)
{
if (i == 0) sContent += "xor rcx, rcx \r\n";
else if (i == 1) sContent += "xor rdx, rdx \r\n";
else if (i == 2) sContent += "xor r8, r8 \r\n";
else if (i == 3) sContent += "xor r9, r9 \r\n";
else sContent += "xor rax, rax \r\npush rax \r\n";
}
else
{
if (i == 0) sContent += "mov rcx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 1) sContent += "mov rdx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 2) sContent += "mov r8, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 3) sContent += "mov r9, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else sContent += "push 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
}
}
else cout << "Error: Undefined parameter type!" << endl;
CurrentParamNr++;
if (i == 0) break;
}
// Allocate stack and correct function call (and cleanup)
sContent += "sub rsp, 0x20 ; Stack space \r\n";
// Call function
size_t FunctOffset = ((NrParam - ParamsInRegisters - 1) * 8); // Nr of parameters pushed on the stack
FunctOffset += (StringOffsetAddress::CurrentStringOffset * 8); // Strings pushed on the stack
FunctOffset += ((FunctionOffsetAddress::CurrentFunctionOffset - FunctionOffsetAddress::GetFunctionOffset(p_oFunctionCall.Name)) * 8); // Function table offset
if (AdjustStack) FunctOffset += 0x8;
FunctOffset += 0x20;
sContent += "call [RSP + ";
sContent += to_string(FunctOffset);
sContent += "]\r\n";
// Cleanup stack
if (AdjustStack) sContent += "add rsp, 0x28\r\n";
else sContent += "add rsp, 0x20\r\n";
// Clean string parameters
if (StringOffsetAddress::CurrentStringOffset > 0)
{
sContent += "add RSP, ";
sContent += to_string((NrParam - ParamsInRegisters) * 8 + StringOffsetAddress::CurrentStringOffset * 8);
sContent += "\r\n";
}
// Clean global strings data
StringOffsetAddress::CurrentStringOffset = 0;
StringOffsetAddress::StringOffsets.clear();
return sContent;
}
// Generate a Linux syscall for x86
string FunctionCalls::GenerateLinuxSyscall_x86(FunctionCalls::FunctionCall p_oFunctionCall)
{
string sContent = "";
size_t NrParam = p_oFunctionCall.Parameters.size();
size_t ParamsInRegisters = (NrParam >= 6) ? 6 : NrParam;
size_t CurrentParamNr = 1;
// First, put all string parameters on the stack
for (size_t i = 0; i < p_oFunctionCall.Parameters.size(); i++)
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING) sContent += GeneratePutStringToStack_x86(p_oFunctionCall.Parameters[i].StringValue);
// Parse all arguments (from the end)
for (size_t i = NrParam - 1; NrParam; i--)
{
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING)
{
size_t CurrentParamNotInRegisters = (CurrentParamNr > 6) ? (CurrentParamNr - 6) : ((NrParam <= 6) ? 0 : (NrParam - 6));
string str_offset = to_string(((CurrentParamNotInRegisters) * 4) + ((StringOffsetAddress::CurrentStringOffset - StringOffsetAddress::GetStringOffset(p_oFunctionCall.Parameters[i].StringValue)) * 4));
if (i == 0) sContent += "mov ebx, [ESP + " + str_offset + "] \r\n";
else if (i == 1) sContent += "mov ecx, [ESP + " + str_offset + "] \r\n";
else if (i == 2) sContent += "mov edx, [ESP + " + str_offset + "] \r\n";
else if (i == 3) sContent += "mov esi, [ESP + " + str_offset + "] \r\n";
else if (i == 4) sContent += "mov edi, [ESP + " + str_offset + "] \r\n";
else if (i == 5) sContent += "mov ebp, [ESP + " + str_offset + "] \r\n";
else sContent += "push [ESP + " + str_offset + "]\r\n";
}
else if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_INT)
{
// If int parameter is 0, avoid NULL
if (p_oFunctionCall.Parameters[i].IntValue == 0)
{
if (i == 0) sContent += "xor ebx, ebx \r\n";
else if (i == 1) sContent += "xor ecx, ecx \r\n";
else if (i == 2) sContent += "xor edx, edx \r\n";
else if (i == 3) sContent += "xor esi, esi \r\n";
else if (i == 4) sContent += "xor edi, edi \r\n";
else if (i == 5) sContent += "xor ebp, ebp \r\n";
else sContent += "xor eax, eax \r\npush eax \r\n";
}
else
{
if (i == 0) sContent += "mov ebx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 1) sContent += "mov ecx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 2) sContent += "mov edx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 3) sContent += "mov esi, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 4) sContent += "mov edi, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 5) sContent += "mov ebp, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else sContent += "push 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
}
}
else cout << "Error: Undefined parameter type!" << endl;
CurrentParamNr++;
if (i == 0) break;
}
// Syscall
int syscallnr = LinuxSyscalls::GetSyscallNr(p_oFunctionCall.Name);
if (syscallnr == LINUX_SYSCALL_UNKNOWN) return "; " + p_oFunctionCall.Name + " syscall not found! \r\n\r\n";
sContent += "mov eax, 0x" + Utils::IntToHexString(syscallnr) + "\r\n";
sContent += "int 0x80 ; Syscall\r\n";
// Clean string parameters and parameters
if ( (StringOffsetAddress::CurrentStringOffset > 0) || (NrParam > 6) )
{
sContent += "add ESP, ";
sContent += to_string( (StringOffsetAddress::CurrentStringOffset + (NrParam > 6 ? (NrParam - 6) : 0) ) * 4);
sContent += "\r\n";
}
sContent += "\r\n";
// Clean global strings data
StringOffsetAddress::CurrentStringOffset = 0;
StringOffsetAddress::StringOffsets.clear();
return sContent;
}
// Generate a Linux syscall for x64
string FunctionCalls::GenerateLinuxSyscall_x64(FunctionCalls::FunctionCall p_oFunctionCall)
{
string sContent = "";
size_t NrParam = p_oFunctionCall.Parameters.size();
size_t ParamsInRegisters = (NrParam >= 6) ? 6 : NrParam;
size_t CurrentParamNr = 1;
// First, put all string parameters on the stack
for (size_t i = 0; i < p_oFunctionCall.Parameters.size(); i++)
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING) sContent += GeneratePutStringToStack_x64(p_oFunctionCall.Parameters[i].StringValue);
// Parse all arguments (from the end)
for (size_t i = NrParam - 1; NrParam; i--)
{
if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_STRING)
{
size_t CurrentParamNotInRegisters = (CurrentParamNr > 6) ? (CurrentParamNr - 6) : ((NrParam <= 6) ? 0 : (NrParam - 6));
string str_offset = to_string(((CurrentParamNotInRegisters) * 8) + ((StringOffsetAddress::CurrentStringOffset - StringOffsetAddress::GetStringOffset(p_oFunctionCall.Parameters[i].StringValue)) * 8));
if (i == 0) sContent += "mov rdi, [RSP + " + str_offset + "] \r\n";
else if (i == 1) sContent += "mov rsi, [RSP + " + str_offset + "] \r\n";
else if (i == 2) sContent += "mov rdx, [RSP + " + str_offset + "] \r\n";
else if (i == 3) sContent += "mov r10, [RSP + " + str_offset + "] \r\n";
else if (i == 4) sContent += "mov r8, [RSP + " + str_offset + "] \r\n";
else if (i == 5) sContent += "mov r9, [RSP + " + str_offset + "] \r\n";
else sContent += "push [RSP + " + str_offset + "]\r\n";
}
else if (p_oFunctionCall.Parameters[i].Type == FunctionCalls::PARAMETER_TYPE_INT)
{
// If int parameter is 0, avoid NULL
if (p_oFunctionCall.Parameters[i].IntValue == 0)
{
if (i == 0) sContent += "xor rdi, rdi \r\n";
else if (i == 1) sContent += "xor rsi, rsi \r\n";
else if (i == 2) sContent += "xor rdx, rdx \r\n";
else if (i == 3) sContent += "xor r10, r10 \r\n";
else if (i == 4) sContent += "xor r8, r8 \r\n";
else if (i == 5) sContent += "xor r9, r9 \r\n";
else sContent += "xor rax, rax \r\npush rax \r\n";
}
else
{
if (i == 0) sContent += "mov rdi, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 1) sContent += "mov rsi, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 2) sContent += "mov rdx, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 3) sContent += "mov r10, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 4) sContent += "mov r8, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else if (i == 5) sContent += "mov r9, 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
else sContent += "push 0x" + Utils::IntToHexString(p_oFunctionCall.Parameters[i].IntValue) + "\r\n";
}
}
else cout << "Error: Undefined parameter type!" << endl;
CurrentParamNr++;
if (i == 0) break;
}
// Syscall
int syscallnr = LinuxSyscalls::GetSyscallNr(p_oFunctionCall.Name);
if (syscallnr == LINUX_SYSCALL_UNKNOWN) return "; " + p_oFunctionCall.Name + " syscall not found! \r\n\r\n";
sContent += "mov rax, 0x" + Utils::IntToHexString(syscallnr) + "\r\n";
sContent += "syscall ; Syscall\r\n";
// Clean string parameters and parameters
if ((StringOffsetAddress::CurrentStringOffset > 0) || (NrParam > 6))
{
sContent += "add RSP, ";
sContent += to_string((StringOffsetAddress::CurrentStringOffset + (NrParam > 6 ? (NrParam - 6) : 0)) * 8);
sContent += "\r\n";
}
sContent += "\r\n";
// Clean global strings data
StringOffsetAddress::CurrentStringOffset = 0;
StringOffsetAddress::StringOffsets.clear();
return sContent;
}