forked from ispysoftware/iSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Firewall.cs
390 lines (311 loc) · 13.8 KB
/
Firewall.cs
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
using System;
using NetFwTypeLib;
namespace iSpyApplication
{
class FireWall
{
public enum FwErrorCode
{
FwNoerror = 0,
FwErrInitialized, // Already initialized or doesn't call Initialize()
FwErrCreateSettingManager, // Can't create an instance of the firewall settings manager
FwErrLocalPolicy, // Can't get local firewall policy
FwErrProfile, // Can't get the firewall profile
FwErrFirewallIsEnabled, // Can't get the firewall enable information
FwErrFirewallEnabled, // Can't set the firewall enable option
FwErrInvalidArg, // Invalid Arguments
FwErrAuthApplications, // Failed to get authorized application list
FwErrAppEnabled, // Failed to get the application is enabled or not
FwErrCreateAppInstance, // Failed to create an instance of an authorized application
FwErrSysAllocString, // Failed to alloc a memory for BSTR
FwErrPutProcessImageName, // Failed to put Process Image File Name to Authorized Application
FwErrPutRegisterName, // Failed to put a registered name
FwErrAddToCollection, // Failed to add to the Firewall collection
FwErrRemoveFromCollection, // Failed to remove from the Firewall collection
FwErrGlobalOpenPorts, // Failed to retrieve the globally open ports
FwErrPortIsEnabled, // Can't get the firewall port enable information
FwErrPortEnabled, // Can't set the firewall port enable option
FwErrCreatePortInstance, // Failed to create an instance of an authorized port
FwErrSetPortNumber, // Failed to set port number
FwErrSetIPProtocol, // Failed to set IP Protocol
FwErrExceptionNotAllowed, // Failed to get or put the exception not allowed
FwErrNotificationDisabled, // Failed to get or put the notification disabled
FwErrUnicastMulticast, // Failed to get or put the UnicastResponses To MulticastBroadcast Disabled Property
FwErrApplicationItem, // Failed to returns the specified application if it is in the collection.
FwErrSamePortExist, // The port which you try to add is already existed.
FwErrUnknown, // Unknown Error or Exception occured
};
INetFwProfile _mFirewallProfile;
public FwErrorCode Initialize()
{
if (_mFirewallProfile != null)
return FwErrorCode.FwErrInitialized;
Type typFwMgr = Type.GetTypeFromCLSID(new Guid("{304CE942-6E39-40D8-943A-B913C40C9CD4}"));
var fwMgr = (INetFwMgr)Activator.CreateInstance(typFwMgr);
INetFwPolicy fwPolicy = fwMgr.LocalPolicy;
if (fwPolicy == null)
return FwErrorCode.FwErrLocalPolicy;
try
{
_mFirewallProfile = fwPolicy.GetProfileByType(fwMgr.CurrentProfileType);
}
catch
{
return FwErrorCode.FwErrProfile;
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode Uninitialize()
{
_mFirewallProfile = null;
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsWindowsFirewallOn(out bool bOn)
{
bOn = false;
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bOn = _mFirewallProfile.FirewallEnabled;
return FwErrorCode.FwNoerror;
}
public FwErrorCode TurnOnWindowsFirewall()
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
// Check whether the firewall is off
bool bFwOn;
FwErrorCode ret = IsWindowsFirewallOn(out bFwOn);
if (ret != FwErrorCode.FwNoerror)
return ret;
// If it is off now, turn it on
if (!bFwOn)
_mFirewallProfile.FirewallEnabled = true;
return FwErrorCode.FwNoerror;
}
public FwErrorCode TurnOffWindowsFirewall()
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
// Check whether the firewall is off
bool bFwOn;
FwErrorCode ret = IsWindowsFirewallOn(out bFwOn);
if (ret != FwErrorCode.FwNoerror)
return ret;
// If it is on now, turn it off
if (bFwOn)
_mFirewallProfile.FirewallEnabled = false;
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsAppEnabled(string strProcessImageFileName, ref bool bEnable)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
if (strProcessImageFileName.Length == 0)
return FwErrorCode.FwErrInvalidArg;
INetFwAuthorizedApplications fwApps = _mFirewallProfile.AuthorizedApplications;
if (fwApps == null)
return FwErrorCode.FwErrAuthApplications;
try
{
INetFwAuthorizedApplication fwApp = fwApps.Item(strProcessImageFileName);
// If FAILED, the appliacation is not in the collection list
if (fwApp == null)
return FwErrorCode.FwErrApplicationItem;
bEnable = fwApp.Enabled;
}
catch (System.IO.FileNotFoundException)
{
bEnable = false;
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode AddApplication(string strProcessImageFileName, string strRegisterName)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
if (strProcessImageFileName.Length == 0 || strRegisterName.Length == 0)
return FwErrorCode.FwErrInvalidArg;
// First of all, check the application is already authorized;
bool bAppEnable = true;
FwErrorCode nError = IsAppEnabled(strProcessImageFileName, ref bAppEnable);
if (nError != FwErrorCode.FwNoerror)
return nError;
// Only add the application if it isn't authorized
if (bAppEnable == false)
{
// Retrieve the authorized application collection
INetFwAuthorizedApplications fwApps = _mFirewallProfile.AuthorizedApplications;
if (fwApps == null)
return FwErrorCode.FwErrAuthApplications;
// Create an instance of an authorized application
Type typeFwApp = Type.GetTypeFromCLSID(new Guid("{EC9846B3-2762-4A6B-A214-6ACB603462D2}"));
var fwApp = (INetFwAuthorizedApplication)Activator.CreateInstance(typeFwApp);
// Set the process image file name
fwApp.ProcessImageFileName = strProcessImageFileName;
fwApp.Name = strRegisterName;
try
{
fwApps.Add(fwApp);
}
catch
{
return FwErrorCode.FwErrAddToCollection;
}
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode RemoveApplication(string strProcessImageFileName)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
if (strProcessImageFileName.Length == 0)
return FwErrorCode.FwErrInvalidArg;
bool bAppEnable = true;
FwErrorCode nError = IsAppEnabled(strProcessImageFileName, ref bAppEnable);
if (nError != FwErrorCode.FwNoerror)
return nError;
// Only remove the application if it is authorized
if (bAppEnable)
{
// Retrieve the authorized application collection
INetFwAuthorizedApplications fwApps = _mFirewallProfile.AuthorizedApplications;
if (fwApps == null)
return FwErrorCode.FwErrAuthApplications;
try
{
fwApps.Remove(strProcessImageFileName);
}
catch
{
return FwErrorCode.FwErrRemoveFromCollection;
}
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsPortEnabled(int nPortNumber, NET_FW_IP_PROTOCOL_ ipProtocol, ref bool bEnable)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
// Retrieve the open ports collection
INetFwOpenPorts fwOpenPorts = _mFirewallProfile.GloballyOpenPorts;
if (fwOpenPorts == null)
return FwErrorCode.FwErrGlobalOpenPorts;
// Get the open port
try
{
INetFwOpenPort fwOpenPort = fwOpenPorts.Item(nPortNumber, ipProtocol);
bEnable = fwOpenPort != null && fwOpenPort.Enabled;
}
catch (System.IO.FileNotFoundException)
{
bEnable = false;
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode AddPort(int nPortNumber, NET_FW_IP_PROTOCOL_ ipProtocol, string strRegisterName)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bool bEnablePort = true;
FwErrorCode nError = IsPortEnabled(nPortNumber, ipProtocol, ref bEnablePort);
if (nError != FwErrorCode.FwNoerror)
return nError;
// Only add the port, if it isn't added to the collection
if (bEnablePort == false)
{
// Retrieve the collection of globally open ports
INetFwOpenPorts fwOpenPorts = _mFirewallProfile.GloballyOpenPorts;
if (fwOpenPorts == null)
return FwErrorCode.FwErrGlobalOpenPorts;
// Create an instance of an open port
Type typeFwPort = Type.GetTypeFromCLSID(new Guid("{0CA545C6-37AD-4A6C-BF92-9F7610067EF5}"));
var fwOpenPort = (INetFwOpenPort)Activator.CreateInstance(typeFwPort);
// Set the port number
fwOpenPort.Port = nPortNumber;
// Set the IP Protocol
fwOpenPort.Protocol = ipProtocol;
// Set the registered name
fwOpenPort.Name = strRegisterName;
try
{
fwOpenPorts.Add(fwOpenPort);
}
catch
{
return FwErrorCode.FwErrAddToCollection;
}
}
else
return FwErrorCode.FwErrSamePortExist;
return FwErrorCode.FwNoerror;
}
public FwErrorCode RemovePort(int nPortNumber, NET_FW_IP_PROTOCOL_ ipProtocol)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bool bEnablePort = false;
FwErrorCode nError = IsPortEnabled(nPortNumber, ipProtocol, ref bEnablePort);
if (nError != FwErrorCode.FwNoerror)
return nError;
// Only remove the port, if it is on the collection
if (bEnablePort)
{
// Retrieve the collection of globally open ports
INetFwOpenPorts fwOpenPorts = _mFirewallProfile.GloballyOpenPorts;
if (fwOpenPorts == null)
return FwErrorCode.FwErrGlobalOpenPorts;
try
{
fwOpenPorts.Remove(nPortNumber, ipProtocol);
}
catch
{
return FwErrorCode.FwErrRemoveFromCollection;
}
}
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsExceptionNotAllowed(ref bool bNotAllowed)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bNotAllowed = _mFirewallProfile.ExceptionsNotAllowed;
return FwErrorCode.FwNoerror;
}
public FwErrorCode SetExceptionNotAllowed(bool bNotAllowed)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
_mFirewallProfile.ExceptionsNotAllowed = bNotAllowed;
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsNotificationDiabled(ref bool bDisabled)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bDisabled = _mFirewallProfile.NotificationsDisabled;
return FwErrorCode.FwNoerror;
}
public FwErrorCode SetNotificationDiabled(bool bDisabled)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
_mFirewallProfile.NotificationsDisabled = bDisabled;
return FwErrorCode.FwNoerror;
}
public FwErrorCode IsUnicastResponsesToMulticastBroadcastDisabled(ref bool bDisabled)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
bDisabled = _mFirewallProfile.UnicastResponsesToMulticastBroadcastDisabled;
return FwErrorCode.FwNoerror;
}
public FwErrorCode SetUnicastResponsesToMulticastBroadcastDisabled(bool bDisabled)
{
if (_mFirewallProfile == null)
return FwErrorCode.FwErrInitialized;
_mFirewallProfile.UnicastResponsesToMulticastBroadcastDisabled = bDisabled;
return FwErrorCode.FwNoerror;
}
}
}