vote up 2 vote down star
8

I have an application that is installed and updated via ClickOnce. The application downloads files via FTP, and therefore needs to be added as an exception to the windows firewall. Because of the way that ClickOnce works, the path to the EXE changes with every update, so the exception needs to change also. What would be the best way to have the changes made to the firewall so that it's invisible to the end user?

(The application is written in C#)

flag

67% accept rate

6 Answers

vote up 3 vote down check

I found this article, which has a complete wrapper class included for manipulating the windows firewall. Adding an Application to the Exception list on the Windows Firewall

The ClickOnce sandbox did not present any problems.

link|flag
The link seems to be broken. – JAG Jun 5 at 10:58
vote up 0 vote down

The easiest way I know would be to use netsh, you can simply delete the rule and re-create it, or set up a port rule, if yours is fixed.
Here is a page describing the options for its firewall context.

link|flag
vote up 5 vote down

It's possible to access the data from the firewall, look at the following articles.

The real question is does the ClickOnce sandbox allows this kind of access? My guess would be that it doesn't. Maybe you could use a webservice? (For more information about the data access methods in ClickOnce see Accessing Local and Remote Data in ClickOnce Applications)

link|flag
vote up 0 vote down

So there are ways to bypass user interaction wenn registring an Exe in the windows firewall, as we learn from other answers here.

Imagine the harm this could impose. Even registring a block automatically could end up in unnecessary work and loss and therefore be considered bad.

The same holds true for UAC under Vista. Whenever there is a way to register automatic, how would we prevent vile software from doing so: viruses, worms, you name it.

Even allowing an existing entry to be updated in the background (same app, different path or so) would allow some software to hijack such an entry by just mimicking the registered software. This is why firewalls require you to reregister new versions on first call.

link|flag
@malach: it's all about permissions. If you run a program as an administrator, you're giving it the rights as an administrator... It's not enforced that you ask for the user permission. UAC changes that, you have to ask the user. But still a user can override it and give the app free play.. – Davy Landman Sep 22 '08 at 9:06
vote up 1 vote down

Not sure if this is the best way, but running netsh should work:

netsh firewall add allowedprogram C:\MyApp\MyApp.exe MyApp ENABLE

I think this requires Administrator Permissions though,for obvious reasons :)

Edit: I just don't know enough about ClickOnce to know whether or not you can run external programs through it.

link|flag
vote up 0 vote down

The fact that there might actually be a way to do this is why I don't trust software firewalls.

link|flag
Right behind you on this. – epochwolf Sep 22 '08 at 13:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.