-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
52 lines (42 loc) · 937 Bytes
/
Copy pathconfig.json
File metadata and controls
52 lines (42 loc) · 937 Bytes
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
{
"projectName" : "test",
"author" : "anonymous",
"email" : "anonymous",
"society" : "anonymous",
"os" : "windows",
"architecture" : "64",
"language" : "masm",
"appType" : "console",
"appType2" : "executable",
"compilerPath" : "C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\MSVC\\14.35.32215\\bin\\Hostx64\\x64\\ml64.exe",
"libPath" : "C:\\Program Files (x86)\\Windows Kits\\10\\Lib\\10.0.19041.0\\um\\x64\\",
"out" : "release",
"imports" : {
"dll" : [
"ntdll",
"Kernel32",
"User32"
],
"function" : {
"CreateFileA" : 7,
"ReadFile" : 5,
"MessageBoxA": 4
}
},
"procedures" : [
"popup"
],
"structures" : [
"STARTUPINFOA",
"PROCESS_INFORMATION"
],
"strings" : {
"pipeName" : "\\\\.\\mailslot\\MyFirstMail",
"content": "Hello",
"msg": "World"
},
"datas" : {
"startInfo" : "_STARTUPINFOA <>",
"procInfo" : "_PROCESS_INFORMATION <>"
}
}