Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#
Article

Windows XP SP2 Firewall Controller

Rate me:
Please Sign up or sign in to vote.
4.82/5 (37 votes)
10 Jul 20062 min read 214.8K   5.9K   90   49
How to control a base firewall included in Windows XP SP2 using COM.

Sample Image - WinXPSP2Firewall.jpg

Introduction

Windows XP SP2 basically has a small firewall. It's very easy to control, but sometimes it bothers you. When your application tries to connect to the internet, Windows shows a warning message-box, and this makes users feel your application is an Ad-Ware.

To prevent such things, I suggest you add your program to a Firewall Collection List. (This list contains the allowed programs.)

This wrapper class is very easy, simple, and useful. You don't need to see this 'Security Alert' message box any more:

Sample Image - Windows Firewall Security Alert Message Box

Implementation - C++

It's very easy. Just connect to the Windows XP Firewall as a COM, and do what you want.

FW_ERROR_CODE WinXPSP2FireWall::Initialize()
{
 HRESULT hr = S_FALSE;
 INetFwMgr* fwMgr = NULL;
 INetFwPolicy* fwPolicy = NULL;

 FW_ERROR_CODE ret = FW_NOERROR;
 try
 {
  if( m_pFireWallProfile )
   throw FW_ERR_INITIALIZED;
  /* Create an instance of the firewall settings manager. */
  hr = CoCreateInstance( __uuidof(NetFwMgr), NULL, 
         CLSCTX_INPROC_SERVER, __uuidof( INetFwMgr), (void**)&fwMgr );
  if( FAILED( hr ))
   throw FW_ERR_CREATE_SETTING_MANAGER;
  /* Retrieve the local firewall policy. */
  hr = fwMgr->get_LocalPolicy( &fwPolicy );
  if( FAILED( hr ))
   throw FW_ERR_LOCAL_POLICY;
  /* Retrieve the firewall profile currently in effect */

  hr = fwPolicy->get_CurrentProfile( &m_pFireWallProfile );
  if( FAILED( hr ))
   throw FW_ERR_PROFILE;
 }
 catch( FW_ERROR_CODE nError)
 {
  ret = nError;
 }
 if( fwPolicy )
  fwPolicy->Release();
 if( fwMgr )
  fwMgr->Release();
 return ret;
}

How to Use in C++

It's very easy to use. Just make an instance, and call Initialize(). Ensure that you call the Initialize() function after calling CoInitialize(). You can call Uninitialize() by yourself, but the destructor calls the function too. Also, you should know that you must let Uninitialize() be called before CoUninitialize() is called.

{
 WinXPSP2FireWall fw;
 fw.Initialize();
 wchar_t szApplication[MAX_PATH];
 GetCurrentDirectoryW( MAX_PATH, szApplication );

#ifdef _DEBUG

  wcscat(szApplication, L"file://Debug//WindowsFirewall.exe");
#else
 wcscat( szApplication, L"file://Release//WindowsFirewall.exe");
#endif

 fw.AddApplication( szApplication, L"FireWallTest");
 fw.RemoveApplication( szApplication );
 fw.AddPort( 4321, NET_FW_IP_PROTOCOL_TCP, L"FireWallPortTest" );
 fw.RemovePort( 4321, NET_FW_IP_PROTOCOL_TCP );
 fw.Uninitialize();
}

How to Use in C#

Usage in C# is very similar to that in C++. But it doesn't require APIs for COM interfaces, this makes it easier to implement this in C# than C++. Allocate an instance of the WinXPSP2FireWall, and call Initialize() first. And then use the methods you want. That's all! :)

C#
Moah.WinXPSP2FireWall fw = new Moah.WinXPSP2FireWall();
fw.Initialize();

string strApplication = System.Environment.CurrentDirectory + 
                        "\\WindowsFirewall.exe";
fw.AddApplication(strApplication, "FireWallTest");
fw.RemoveApplication(strApplication);

fw.AddPort(4321, NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_TCP, 
           "FireWallPortTest");
fw.RemovePort(4321, NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_TCP);

Acknowledgment for C++

You need four files to compile this project: netfw.h, netfw.idl, icftypes.h, and icftypes.idl. You can get those files from the Windows XP SP2 PSDK. Or I have included the files in the downloads. You can just use them, instead of downloading and installing the SDK.

Acknowledgment for C#

If you have errors with NetFwTypeLib, add a reference to hnetcfg.dll. You can do that through "Project -> Add Reference... -> Browse" in Visual Studio, and the DLL file is usually located in "C:\Windows\System32\hnetcfg.dll".

History

  • 6, Jul. 2005
    • First release.
  • 10, Jul. 2006
    • Added a C# version of the Windows XP SP2 Firewall Controller.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Korea (Republic of) Korea (Republic of)
Youngjin Kim lives in South Korea. I'm interested in every part of Computer Science, cause it has not been long time since graduate a University.
But now I'm working and researching on Pattern Recognition. Using that trying to recognize a Handwriting Prints. Korean and Chinese are my interesting Research Part.

Comments and Discussions

 
QuestionVisual studio 2017 Pin
Apprieu (Apprieu)4-Sep-19 21:33
Apprieu (Apprieu)4-Sep-19 21:33 
QuestionLicense Pin
Member 1391457316-Jul-18 22:18
Member 1391457316-Jul-18 22:18 
GeneralMy vote of 5 Pin
Member 114299875-Feb-15 4:23
Member 114299875-Feb-15 4:23 
QuestionMultiple profiles Pin
tianjin2241-Nov-13 16:15
tianjin2241-Nov-13 16:15 
QuestionLicense Pin
Member 896106528-May-12 23:27
Member 896106528-May-12 23:27 
Questionhow to run this source code Pin
Member 39583126-Sep-08 23:24
Member 39583126-Sep-08 23:24 
i am sorry may be this question would be so stupid for you people but i am running this source code for the first time ever and i dont know where to copy WinXPSP2FireWall.cpp ,WinXPSP2FireWall.cs and WinXPSP2FireWall.h and how to run this project is there any tutorial for running this source code
thanx looking for your favor
QuestionHow to add Windws Service Exception??? Pin
erickbp212-Sep-08 9:20
erickbp212-Sep-08 9:20 
Generalbug under Vista Pin
noelhx27-Mar-07 18:55
noelhx27-Mar-07 18:55 
QuestionXP firewall gets automatically DISABLED when using this?? Pin
Orion Richardson228-Dec-06 4:28
Orion Richardson228-Dec-06 4:28 
AnswerRe: XP firewall gets automatically DISABLED when using this?? Pin
moah28-Dec-06 6:02
moah28-Dec-06 6:02 
AnswerRe: XP firewall gets automatically DISABLED when using this?? Pin
Orion Richardson27-Feb-07 8:49
Orion Richardson27-Feb-07 8:49 
GeneralRe: XP firewall gets automatically DISABLED when using this?? Pin
chinnu_j13-Feb-07 23:19
chinnu_j13-Feb-07 23:19 
GeneralRe: XP firewall gets automatically DISABLED when using this?? Pin
el delo15-May-07 12:52
el delo15-May-07 12:52 
QuestionDoes this work on Vista? Pin
thomastom19-Sep-06 11:00
thomastom19-Sep-06 11:00 
AnswerRe: Does this work on Vista? Pin
thomastom19-Sep-06 14:02
thomastom19-Sep-06 14:02 
GeneralRe: Does this work on Vista? Pin
moah20-Sep-06 5:45
moah20-Sep-06 5:45 
AnswerRe: Does this work on Vista? Pin
Ed Dixon28-Dec-06 12:50
Ed Dixon28-Dec-06 12:50 
GeneralDon't listen to the complainers Pin
TomM11-Aug-06 11:40
TomM11-Aug-06 11:40 
GeneralRe: Don't listen to the complainers Pin
moah12-Aug-06 2:37
moah12-Aug-06 2:37 
Questionwhat if there is no SP? Pin
Mario M.21-Jul-06 13:35
Mario M.21-Jul-06 13:35 
AnswerRe: what if there is no SP? Pin
moah23-Jul-06 16:05
moah23-Jul-06 16:05 
GeneralFirewall on Windows 2000 and XP SP1 Pin
Fornazin19-Jul-06 4:46
Fornazin19-Jul-06 4:46 
GeneralRe: Firewall on Windows 2000 and XP SP1 Pin
moah19-Jul-06 20:22
moah19-Jul-06 20:22 
GeneralRe: Firewall on Windows 2000 and XP SP1 Pin
padma81014-Nov-06 23:30
padma81014-Nov-06 23:30 
GeneralRe: Firewall on Windows 2000 and XP SP1 Pin
moah15-Nov-06 0:49
moah15-Nov-06 0:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.