-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild_config.py
More file actions
157 lines (157 loc) · 5.21 KB
/
build_config.py
File metadata and controls
157 lines (157 loc) · 5.21 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
build_config = {
"version": "0.1",
"debug": True,
"projects": {
"build\\bin\\w32-exec-calc-shellcode.bin": {
"architecture": "x86",
"files": {
"build\\bin\\w32-exec-calc-shellcode.bin": {
"sources": ["w32-exec-calc-shellcode.asm"],
},
},
},
"build\\bin\\w32-exec-calc-shellcode-esp.bin": {
"architecture": "x86",
"files": {
"build\\bin\\w32-exec-calc-shellcode-esp.bin": {
"sources": ["w32-exec-calc-shellcode.asm"],
"defines": {"STACK_ALIGN": "TRUE"},
},
},
},
"build\\bin\\w32-exec-calc-shellcode-func.bin": {
"architecture": "x86",
"files": {
"build\\bin\\w32-exec-calc-shellcode-func.bin": {
"sources": ["w32-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
},
},
"build\\bin\\w32-exec-calc-shellcode-clean-func.bin": {
"architecture": "x86",
"files": {
"build\\bin\\w32-exec-calc-shellcode-clean-func.bin": {
"sources": ["w32-exec-calc-shellcode.asm"],
"defines": {"CLEAN": "TRUE", "FUNC": "TRUE"},
},
},
},
"build\\bin\\w64-exec-calc-shellcode.bin": {
"architecture": "x64",
"files": {
"build\\bin\\w64-exec-calc-shellcode.bin": {
"sources": ["w64-exec-calc-shellcode.asm"],
},
},
},
"build\\bin\\w64-exec-calc-shellcode-esp.bin": {
"architecture": "x64",
"files": {
"build\\bin\\w64-exec-calc-shellcode-esp.bin": {
"sources": ["w64-exec-calc-shellcode.asm"],
"defines": {"STACK_ALIGN": "TRUE"},
},
},
},
"build\\bin\\w64-exec-calc-shellcode-func.bin": {
"architecture": "x64",
"files": {
"build\\bin\\w64-exec-calc-shellcode-func.bin": {
"sources": ["w64-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
},
},
"build\\bin\\w64-exec-calc-shellcode-clean-func.bin": {
"architecture": "x64",
"files": {
"build\\bin\\w64-exec-calc-shellcode-clean-func.bin": {
"sources": ["w64-exec-calc-shellcode.asm"],
"defines": {"CLEAN": "TRUE", "FUNC": "TRUE"},
},
},
},
"build\\bin\\win-exec-calc-shellcode.bin": {
"architecture": "x86/x64",
"files": {
"build\\bin\\win-exec-calc-shellcode.bin": {
"sources": ["win-exec-calc-shellcode.asm"],
},
},
},
"build\\bin\\win-exec-calc-shellcode-esp.bin": {
"architecture": "x86/x64",
"files": {
"build\\bin\\win-exec-calc-shellcode-esp.bin": {
"sources": ["win-exec-calc-shellcode.asm"],
"defines": {"STACK_ALIGN": "TRUE"},
},
},
},
"build\\dll\\w32-exec-calc-shellcode.dll": {
"architecture": "x86",
"dependencies": ["build\\bin\\w32-exec-calc-shellcode.bin"],
"files": {
"build\\dll\\w32-exec-calc-shellcode.dll": {
"sources": ["build\\w32-exec-calc-shellcode.obj", "build\\w32-dll-run-shellcode.obj"],
},
"build\\w32-exec-calc-shellcode.obj": {
"sources": ["w32-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
"build\\w32-dll-run-shellcode.obj": {
"sources": ["win-dll-run-shellcode.c"],
}
}
},
"build\\dll\\w64-exec-calc-shellcode.dll": {
"architecture": "x64",
"dependencies": ["build\\bin\\w64-exec-calc-shellcode.bin"],
"files": {
"build\\dll\\w64-exec-calc-shellcode.dll": {
"sources": ["build\\w64-exec-calc-shellcode.obj", "build\\w64-dll-run-shellcode.obj"],
},
"build\\w64-exec-calc-shellcode.obj": {
"sources": ["w64-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
"build\\w64-dll-run-shellcode.obj": {
"sources": ["win-dll-run-shellcode.c"],
}
}
},
"build\\exe\\w32-exec-calc-shellcode.exe": {
"architecture": "x86",
"dependencies": ["build\\bin\\w32-exec-calc-shellcode.bin"],
"files": {
"build\\exe\\w32-exec-calc-shellcode.exe": {
"sources": ["build\\w32-exec-calc-shellcode.obj", "build\\w32-exe-run-shellcode.obj"],
},
"build\\w32-exec-calc-shellcode.obj": {
"sources": ["w32-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
"build\\w32-exe-run-shellcode.obj": {
"sources": ["win-exe-run-shellcode.c"],
}
}
},
"build\\exe\\w64-exec-calc-shellcode.exe": {
"architecture": "x64",
"dependencies": ["build\\bin\\w64-exec-calc-shellcode.bin"],
"files": {
"build\\exe\\w64-exec-calc-shellcode.exe": {
"sources": ["build\\w64-exec-calc-shellcode.obj", "build\\w64-exe-run-shellcode.obj"],
},
"build\\w64-exec-calc-shellcode.obj": {
"sources": ["w64-exec-calc-shellcode.asm"],
"defines": {"FUNC": "TRUE"},
},
"build\\w64-exe-run-shellcode.obj": {
"sources": ["win-exe-run-shellcode.c"],
}
}
},
},
}