-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathWfpADSI.cpp
354 lines (308 loc) · 8.09 KB
/
WfpADSI.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
#include "StdAfx.h"
#include ".\wfpadsi.h"
using namespace std;
CWfpADSI::CWfpADSI(void)
{
}
CWfpADSI::~CWfpADSI(void)
{
}
bool CWfpADSI::NetBIOSShares_get(void)
{
// FIXME: Currently ADSI_Shares only returns 1 share.
IADsFileShare *pShares = NULL;
HRESULT hr = WBEM_S_NO_ERROR;
LPWSTR adsPath = new WCHAR[37];
IADsContainer *pCont = NULL;
IADsCollection *pColl = NULL;
IUnknown *pUnk = NULL;
IEnumVARIANT *pEnum = NULL;
ULONG lFetch = 0;
IDispatch *pDisp = NULL;
CString tmp, session;
BSTR bstr;
VARIANT var;
_snwprintf_s(adsPath, 36, 26, L"WinNT://%S/LanmanServer", node.ipaddress);
hr = ADsGetObject(adsPath, IID_IADsContainer, (void**)&pCont);
if(FAILED(hr))
{
delete [] adsPath;
ErrorHandler("ADsGetObject", GetLastError());
return false;
}
hr = pCont->get__NewEnum(&pUnk);
if (FAILED(hr))
{
delete [] adsPath;
return false;
}
hr = pUnk->QueryInterface(IID_IEnumVARIANT,(void**)&pEnum);
if (FAILED(hr))
{
delete [] adsPath;
return false;
}
// Now Enumerate
VariantInit(&var);
pEnum->Reset();
hr = pEnum->Next(1, &var, &lFetch);
//tmp.Format("Number of items %lu\n", lFetch);
//pWfpDlg->InsertString(tmp);
while(SUCCEEDED(hr) && lFetch > 0)
{
if (lFetch == 1)
{
pDisp = V_DISPATCH(&var);
pDisp->QueryInterface(IID_IADsFileShare , (void**)&pShares);
pShares->get_HostComputer(&bstr);
tmp.Format(_T("%S\\"),bstr);
NetBIOSShares.Add(tmp);
SysFreeString(bstr);
pShares->get_Name(&bstr);
tmp.Format(_T("%S\n"),bstr);
NetBIOSShares.Add(tmp);
SysFreeString(bstr);
pShares->get_Description(&bstr);
tmp.Format(_T("%S\n"),bstr);
NetBIOSShares.Add(tmp);
SysFreeString(bstr);
pShares->Release();
}
VariantClear(&var);
pDisp=NULL;
hr = pEnum->Next(1, &var, &lFetch);
};
delete [] adsPath;
if(pDisp)
pDisp->Release();
if(pEnum)
pEnum->Release();
if(pUnk)
pUnk->Release();
if(pColl)
pColl->Release();
return true;
}
bool CWfpADSI::Groups_get(void)
{
if(!Services_Users_Groups(ENUM_GROUPS))
return false;
else
return true;
}
bool CWfpADSI::OperatingSystem_get(void)
{
CString tmp;
IADsComputer *pComp = NULL;
LPWSTR pwszBindingString = new WCHAR[33];
HRESULT hr = WBEM_S_NO_ERROR;
BSTR bstr, bstr2;
_snwprintf_s(pwszBindingString, 32, 32, L"WinNT://%S,computer", node.ipaddress);
hr = ADsGetObject(pwszBindingString,IID_IADsComputer,(void**)&pComp);
if(FAILED(hr))
{
ErrorHandler("ADsGetObject", GetLastError());
delete[] pwszBindingString;
return false;
}
pComp->get_OperatingSystem(&bstr);
pComp->get_OperatingSystemVersion(&bstr2);
tmp.Format(_T("Operating System: %S %S"),bstr,bstr2);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
SysFreeString(bstr2);
pComp->get_Division(&bstr);
tmp.Format(_T("Organization: %S"),bstr);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
pComp->get_Processor(&bstr);
tmp.Format(_T("Processor : %S"),bstr);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
pComp->get_ProcessorCount(&bstr);
tmp.Format(_T("Processor Count : %S"),bstr);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
pComp->get_GUID(&bstr);
tmp.Format("GUID: %S",bstr);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
pComp->get_Owner(&bstr);
tmp.Format(_T("Computer owner: %S"),bstr);
OperatingSystem.Add(tmp);
SysFreeString(bstr);
pComp->Release();
delete[] pwszBindingString;
return true;
}
bool CWfpADSI::Services_get(void)
{
if(!Services_Users_Groups(ENUM_GROUPS))
return false;
else
return true;
}
bool CWfpADSI::Sessions_get(void) {
IADsFileServiceOperations *pFso = NULL;
IADsSession *pSes = NULL;
LONG seconds = 0;
HRESULT hr = WBEM_S_NO_ERROR;
LPWSTR adsPath = new WCHAR[37];
LPWKSTA_INFO_102 pwBuf = NULL;
IADsCollection *pColl = NULL;
IUnknown *pUnk = NULL;
IEnumVARIANT *pEnum = NULL;
ULONG lFetch = 0;
IDispatch *pDisp = NULL;
BSTR bstr;
VARIANT var;
CString tmp, session;
_snwprintf_s(adsPath, 36, 36, L"WinNT://%S/LanmanServer", node.ipaddress);
hr = ADsGetObject(adsPath, IID_IADsFileServiceOperations, (void**)&pFso);
if(FAILED(hr))
{
delete [] adsPath;
ErrorHandler("ADsGetObject", GetLastError());
return false;
}
hr = pFso->Sessions(&pColl);
pFso->Release();
// Now to enumerate sessions.
hr = pColl->get__NewEnum(&pUnk);
if (FAILED(hr))
{
delete [] adsPath;
return false;
}
pColl->Release();
hr = pUnk->QueryInterface(IID_IEnumVARIANT,(void**)&pEnum);
if (FAILED(hr))
{
delete [] adsPath;
return false;
}
pUnk->Release();
// Now Enumerate
VariantInit(&var);
hr = pEnum->Next(1, &var, &lFetch);
while(hr == S_OK)
{
if (lFetch == 1)
{
pDisp = V_DISPATCH(&var);
pDisp->QueryInterface(IID_IADsSession, (void**)&pSes);
pSes->get_Computer(&bstr);
tmp.Format(_T("Client: %S "),bstr);
session.operator +=(tmp);
SysFreeString(bstr);
pSes->get_User(&bstr);
tmp.Format(_T("User: %S "),bstr);
session.operator +=(tmp);
SysFreeString(bstr);
pSes->get_ConnectTime(&seconds);
tmp.Format(_T("Seconds Connected: %d "),seconds);
session.operator +=(tmp);
pSes->get_IdleTime(&seconds);
tmp.Format(_T("Seconds Idle: %d"),seconds);
session.operator +=(tmp);
Sessions.Add(session);
pSes->Release();
}
VariantClear(&var);
pDisp=NULL;
hr = pEnum->Next(1, &var, &lFetch);
};
delete [] adsPath;
hr = pEnum->Release();
return true;
}
bool CWfpADSI::Users_get(void)
{
if(!Services_Users_Groups(ENUM_USERS))
return false;
else
return true;
}
bool CWfpADSI::Services_Users_Groups(int enumtype)
{
IADsContainer * pIADsCont = NULL;
LPWSTR pwszBindingString = new WCHAR[33];
LPWSTR pwszFilter = NULL;
IDispatch *pDispatch = NULL;
IADs *pIADs = NULL;
VARIANT vFilter, Variant;
HRESULT hr = WBEM_S_NO_ERROR;
IEnumVARIANT *pEnumVariant = NULL; // Ptr to the IEnumVariant Interface
ULONG ulElementsFetched = 0; // Number of elements fetched
BSTR bsResult, bsResult2, bsResult3;
CString tmp, tmp2, type;
_snwprintf_s(pwszBindingString, 32, 32, L"WinNT://%S,computer", node.ipaddress);
hr = ADsGetObject(pwszBindingString, IID_IADsContainer,(void **)&pIADsCont);
if(SUCCEEDED(hr))
{
VariantInit(&vFilter);
// Build a Variant of array type, using the filter passed
hr = ADsBuildVarArrayStr(&pwszFilter, 1, &vFilter);
if (SUCCEEDED(hr))
{
// Set the filter for the results of the Enum
hr = pIADsCont->put_Filter(vFilter);
if (SUCCEEDED(hr))
{
// Builds an enumerator interface- this will be used
// to enumerate the objects contained in the IADsContainer
hr = ADsBuildEnumerator(pIADsCont,&pEnumVariant);
// While no errors- Loop through and print the data
while (SUCCEEDED(hr) && hr != S_FALSE)
{
// Object comes back as a VARIANT holding an IDispatch *
hr = ADsEnumerateNext(pEnumVariant,1,&Variant,&ulElementsFetched);
if(hr != S_FALSE)
{
pDispatch = Variant.pdispVal;
// QI the Variant's IDispatch * for the IADs interface
hr = pDispatch->QueryInterface(IID_IADs,(VOID **) &pIADs) ;
if (SUCCEEDED(hr))
{
// Print some information about the object
tmp2.Empty();
pIADs->get_Class(&bsResult);
pIADs->get_Name(&bsResult2);
pIADs->get_GUID(&bsResult3);
type.Format("%S", (LPOLESTR) bsResult);
tmp.Format(_T("%S"),(LPOLESTR) bsResult2);
tmp2.operator +=(tmp);
tmp.Format(_T(" GUID: %S"),(LPOLESTR) bsResult3);
tmp2.operator +=(tmp);
if(type.Find("Service") != -1)
if(options.optionservices)
Services.Add(tmp2);
if(type.Find("Group") != -1)
if(options.optiongroups)
Groups.Add(tmp2);
if(type.Find("User") != -1)
if(options.optionusers)
Users.Add(tmp2);
SysFreeString(bsResult);
SysFreeString(bsResult2);
SysFreeString(bsResult3);
pIADs->Release();
pIADs = NULL;
}
}
}
// Since the hr from iteration was lost, free
// the interface if the ptr is != NULL
if(pEnumVariant)
{
pEnumVariant->Release();
pEnumVariant = NULL;
}
VariantClear(&Variant);
}
}
VariantClear(&vFilter);
}
delete[] pwszBindingString;
return true;
}