Click here to Skip to main content
6,295,667 members and growing! (15,363 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Win32/64 SDK & OS » General     Intermediate

Windows XP SP2 Firewall Controller

By moah

How to control a base firewall included in Windows XP SP2 using COM.
C#, VC7.1, .NET, WinXP, COM, VS.NET2003, Dev
Posted:5 Jul 2005
Updated:10 Jul 2006
Views:79,209
Bookmarked:68 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
29 votes for this article.
Popularity: 6.66 Rating: 4.55 out of 5
1 vote, 3.4%
1

2

3
4 votes, 13.8%
4
24 votes, 82.8%
5

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! :)

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

About the Author

moah


Member
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.
Occupation: Web Developer
Location: Korea, Republic Of Korea, Republic Of

Other popular Win32/64 SDK & OS articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 43 (Total in Forum: 43) (Refresh)FirstPrevNext
Questionhow to run this source code PinmemberMember 39583120:24 7 Sep '08  
QuestionHow to add Windws Service Exception??? Pinmembererickbp2110:20 2 Sep '08  
Generalbug under Vista Pinmembernoelhx19:55 27 Mar '07  
QuestionXP firewall gets automatically DISABLED when using this?? PinmemberOrion Richardson25:28 28 Dec '06  
AnswerRe: XP firewall gets automatically DISABLED when using this?? Pinmembermoah7:02 28 Dec '06  
AnswerRe: XP firewall gets automatically DISABLED when using this?? PinmemberOrion Richardson29:49 7 Feb '07  
GeneralRe: XP firewall gets automatically DISABLED when using this?? Pinmemberchinnu_10:19 14 Feb '07  
GeneralRe: XP firewall gets automatically DISABLED when using this?? Pinmemberel delo13:52 15 May '07  
GeneralDoes this work on Vista? Pinmemberthomastom12:00 19 Sep '06  
GeneralRe: Does this work on Vista? Pinmemberthomastom15:02 19 Sep '06  
GeneralRe: Does this work on Vista? Pinmembermoah6:45 20 Sep '06  
GeneralRe: Does this work on Vista? PinmemberEd Dixon13:50 28 Dec '06  
GeneralDon't listen to the complainers PinmemberTomM12:40 11 Aug '06  
GeneralRe: Don't listen to the complainers Pinmembermoah3:37 12 Aug '06  
Generalwhat if there is no SP? PinmemberMario M.14:35 21 Jul '06  
GeneralRe: what if there is no SP? Pinmembermoah17:05 23 Jul '06  
GeneralFirewall on Windows 2000 and XP SP1 PinmemberFornazin5:46 19 Jul '06  
GeneralRe: Firewall on Windows 2000 and XP SP1 Pinmembermoah21:22 19 Jul '06  
GeneralRe: Firewall on Windows 2000 and XP SP1 Pinmemberpadma8100:30 15 Nov '06  
GeneralRe: Firewall on Windows 2000 and XP SP1 Pinmembermoah1:49 15 Nov '06  
GeneralAbout the C# version Pinmemberhdkrus7:07 28 Jun '06  
GeneralRe: About the C# version Pinmembermoah16:22 29 Jun '06  
GeneralAbout the C# version Pinmemberhdkrus7:03 11 Jul '06  
GeneralI want to use Windows XP SP2 Firewall Controller in Visual C# Pinmemberchul781022:49 12 Jul '05  
GeneralRe: I want to use Windows XP SP2 Firewall Controller in Visual C# Pinmembermoah16:39 15 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 10 Jul 2006
Editor: Smitha Vijayan
Copyright 2005 by moah
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project