-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocInfo.c
368 lines (300 loc) · 12.3 KB
/
procInfo.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
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
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
#include <windows.h>
#include <tlhelp32.h>
#include <tchar.h>
#include <stdio.h>
#include <errno.h>
BOOL returnProc(void) {
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Check if able to get first proccess if Error is Spawned exit [return(FALSE)].
if (!Process32First(hProcessSnap, &pe32))
{
CloseHandle(hProcessSnap);
return(FALSE);
}
do
{
_tprintf(TEXT("\n-------------------- [PID:\033[31m%d\033[0m] --------------------"), pe32.th32ProcessID);
_tprintf(TEXT("\nProccess Name: \033[36m%s\033[0m "), pe32.szExeFile);
_tprintf(TEXT("\n Process ID = \033[32m 0x%08X\033[0m"), pe32.th32ProcessID);
_tprintf(TEXT("\n Thread count = \033[32m %d\033[0m"), pe32.cntThreads);
_tprintf(TEXT("\n Parent process ID = \033[32m 0x%08X\033[0m"), pe32.th32ParentProcessID);
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return(TRUE);
}
BOOL ListProcessModules(DWORD dwPID)
{
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;
MODULEENTRY32 me32;
// Take a snapshot of all modules in the specified process.
hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwPID);
if (hModuleSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
me32.dwSize = sizeof(MODULEENTRY32);
if (!Module32First(hModuleSnap, &me32))
{
puts("\033[31mERORR - UNABLE TO GET MODULE DATA \n\033[0m "); // show cause of failure
CloseHandle(hModuleSnap); // clean the snapshot object
return(FALSE);
}
do
{
_tprintf(TEXT("\n\n MODULE NAME: %s"), me32.szModule);
_tprintf(TEXT("\n Executable = %s"), me32.szExePath);
_tprintf(TEXT("\n Process ID = 0x%08X"), me32.th32ProcessID);
_tprintf(TEXT("\n Ref count (g) = 0x%04X"), me32.GlblcntUsage);
_tprintf(TEXT("\n Ref count (p) = 0x%04X"), me32.ProccntUsage);
_tprintf(TEXT("\n Base address = 0x%08X"), (DWORD)me32.modBaseAddr);
_tprintf(TEXT("\n Base size = %d"), me32.modBaseSize);
} while (Module32Next(hModuleSnap, &me32));
CloseHandle(hModuleSnap);
return(TRUE);
}
BOOL returnProcAdvanced(void) {
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Check if able to get first proccess if Error is Spawned exit [return(FALSE)].
if (!Process32First(hProcessSnap, &pe32))
{
CloseHandle(hProcessSnap);
return(FALSE);
}
do
{
_tprintf(TEXT("\n-------------------- [PID:\033[31m%d\033[0m] --------------------"), pe32.th32ProcessID);
_tprintf(TEXT("\nProccess Name: \033[36m%s\033[0m "), pe32.szExeFile);
_tprintf(TEXT("\n Process ID = \033[32m 0x%08X\033[0m"), pe32.th32ProcessID);
_tprintf(TEXT("\n Thread count = \033[32m %d\033[0m"), pe32.cntThreads);
_tprintf(TEXT("\n Parent process ID = \033[32m 0x%08X\033[0m"), pe32.th32ParentProcessID);
ListProcessModules(pe32.th32ProcessID);
ListProcessThreads(pe32.th32ProcessID);
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return(TRUE);
}
BOOL ListProcessThreads(DWORD dwOwnerPID)
{
HANDLE hThreadSnap = INVALID_HANDLE_VALUE;
THREADENTRY32 te32;
// Take a snapshot of all running threads
hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
if (hThreadSnap == INVALID_HANDLE_VALUE) {
return(FALSE);
}
te32.dwSize = sizeof(THREADENTRY32);
if (!Thread32First(hThreadSnap, &te32))
{
puts("\033[31mERORR - UNABLE TO GET THREAD DATA \n\033[0m ");
CloseHandle(hThreadSnap);
return(FALSE);
}
do
{
if (te32.th32OwnerProcessID == dwOwnerPID)
{
_tprintf(TEXT("\n\n THREAD ID = 0x%08X"), te32.th32ThreadID);
_tprintf(TEXT("\n Base priority = %d"), te32.tpBasePri);
_tprintf(TEXT("\n Delta priority = %d"), te32.tpDeltaPri);
_tprintf(TEXT("\n"));
}
} while (Thread32Next(hThreadSnap, &te32));
CloseHandle(hThreadSnap);
return(TRUE);
}
void saveToFile(void) {
write_returnProcAdvanced();
}
// WRITE FUNCTIONS NEED WORK
// FIX NULL ERRORS
// FIX CHANGE _tprintf() TO fputs() OR fprintf() FOR THREAD AND MODULE FUNCTIONS
#define TO_STRING(val) #val
BOOL write_returnProcAdvanced(void) {
FILE* fPtr;
fPtr = fopen("fileOut.txt", "w");
if (fPtr == NULL) {
puts("\033[31mERORR - UNABLE TO OPEN FILE \n\033[0m ");
exit(EXIT_FAILURE);
}
else
{
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Check if able to get first proccess if Error is Spawned exit [return(FALSE)].
if (!Process32First(hProcessSnap, &pe32))
{
CloseHandle(hProcessSnap);
return(FALSE);
}
do
{
//WCHAR test = pe32.th32ProcessID;
//printf("%s \n", TO_STRING(test));
//wchar_t wstr[256] = (pe32.th32ProcessID);
fputs("%s", (pe32.th32ProcessID), fPtr);
//fputs("\n-------------------- [PID:%d] --------------------", pe32.th32ProcessID,fPtr);
//fputs("\nProccess Name: %s ", pe32.szExeFile, fPtr);
//fputs(("\n Process ID = 0x%08X", pe32.th32ProcessID), fPtr);
//fputs(("\n Thread count = %d", pe32.cntThreads),fPtr);
//fputs(("\n Parent process ID = 0x%08X", pe32.th32ParentProcessID), fPtr);
ListProcessModules(pe32.th32ProcessID);
ListProcessThreads(pe32.th32ProcessID);
} while (Process32Next(hProcessSnap, &pe32));
fclose(fPtr);
CloseHandle(hProcessSnap);
return(TRUE);
}
}
BOOL write_ListProcessThreads(DWORD dwOwnerPID) {
HANDLE hThreadSnap = INVALID_HANDLE_VALUE;
THREADENTRY32 te32;
// Take a snapshot of all running threads
hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
if (hThreadSnap == INVALID_HANDLE_VALUE) {
return(FALSE);
}
te32.dwSize = sizeof(THREADENTRY32);
if (!Thread32First(hThreadSnap, &te32))
{
puts("\033[31mERORR - UNABLE TO GET THREAD DATA \n\033[0m ");
CloseHandle(hThreadSnap);
return(FALSE);
}
do
{
if (te32.th32OwnerProcessID == dwOwnerPID)
{
_tprintf(TEXT("\n\n THREAD ID = 0x%08X"), te32.th32ThreadID);
_tprintf(TEXT("\n Base priority = %d"), te32.tpBasePri);
_tprintf(TEXT("\n Delta priority = %d"), te32.tpDeltaPri);
_tprintf(TEXT("\n"));
}
} while (Thread32Next(hThreadSnap, &te32));
CloseHandle(hThreadSnap);
return(TRUE);
}
BOOL write_ListProcessModules(DWORD dwPID) {
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;
MODULEENTRY32 me32;
// Take a snapshot of all modules in the specified process.
hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwPID);
if (hModuleSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
me32.dwSize = sizeof(MODULEENTRY32);
if (!Module32First(hModuleSnap, &me32))
{
puts("\033[31mERORR - UNABLE TO GET MODULE DATA \n\033[0m "); // show cause of failure
CloseHandle(hModuleSnap); // clean the snapshot object
return(FALSE);
}
do
{
_tprintf(TEXT("\n\n MODULE NAME: %s"), me32.szModule);
_tprintf(TEXT("\n Executable = %s"), me32.szExePath);
_tprintf(TEXT("\n Process ID = 0x%08X"), me32.th32ProcessID);
_tprintf(TEXT("\n Ref count (g) = 0x%04X"), me32.GlblcntUsage);
_tprintf(TEXT("\n Ref count (p) = 0x%04X"), me32.ProccntUsage);
_tprintf(TEXT("\n Base address = 0x%08X"), (DWORD)me32.modBaseAddr);
_tprintf(TEXT("\n Base size = %d"), me32.modBaseSize);
} while (Module32Next(hModuleSnap, &me32));
CloseHandle(hModuleSnap);
return(TRUE);
}
BOOL singleProcData(DWORD dwPID) {
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Check if able to get first proccess if Error is Spawned exit [return(FALSE)].
if (!Process32First(hProcessSnap, &pe32))
{
CloseHandle(hProcessSnap);
return(FALSE);
}
do
{
if (dwPID == pe32.th32ProcessID) {
_tprintf(TEXT("\n-------------------- [PID:\033[31m%d\033[0m] --------------------"), pe32.th32ProcessID);
_tprintf(TEXT("\nProccess Name: \033[36m%s\033[0m "), pe32.szExeFile);
_tprintf(TEXT("\n Process ID = \033[32m 0x%08X\033[0m"), pe32.th32ProcessID);
_tprintf(TEXT("\n Thread count = \033[32m %d\033[0m"), pe32.cntThreads);
_tprintf(TEXT("\n Parent process ID = \033[32m 0x%08X\033[0m"), pe32.th32ParentProcessID);
}
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;
MODULEENTRY32 me32;
// Take a snapshot of all modules in the specified process.
hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwPID);
if (hModuleSnap == INVALID_HANDLE_VALUE)
{
puts("\033[31mERORR - UNABLE TO MAKE PROCESS SNAPSHOT \n\033[0m ");
return(FALSE);
}
me32.dwSize = sizeof(MODULEENTRY32);
if (!Module32First(hModuleSnap, &me32))
{
puts("\033[31mERORR - UNABLE TO GET MODULE DATA \n\033[0m "); // show cause of failure
CloseHandle(hModuleSnap); // clean the snapshot object
return(FALSE);
}
do
{
_tprintf(TEXT("\n\n MODULE NAME: \033[36m%s\033[0m"), me32.szModule);
_tprintf(TEXT("\n Executable = \033[32m%s\033[0m"), me32.szExePath);
_tprintf(TEXT("\n Process ID =\033[32m 0x%08X\033[0m"), me32.th32ProcessID);
_tprintf(TEXT("\n Ref count (g) =\033[32m 0x%04X\033[0m"), me32.GlblcntUsage);
_tprintf(TEXT("\n Ref count (p) =\033[32m 0x%04X\033[0m"), me32.ProccntUsage);
_tprintf(TEXT("\n Base address =\033[32m 0x%08X\033[0m"), (DWORD)me32.modBaseAddr);
_tprintf(TEXT("\n Base size = \033[32m%d\033[0m"), me32.modBaseSize);
} while (Module32Next(hModuleSnap, &me32));
CloseHandle(hModuleSnap);
return(TRUE);
}