'Zonealarm spying on customers - ZA describes it as just a 'bug'...'

Diasper

Senior member
Mar 7, 2005
709
0
0
Inquirer article.

Wow is all I can say. If this is true I knew Zonealarm 6 was bad but not like that...

What about pre Zonealarm 6 users (ver 5.5) - I wonder if they are included or not.
 

KB

Diamond Member
Nov 8, 1999
5,406
389
126
From the article " The "bug" seems to be present in the retail version of Zone Alarm, so there?s no telling what the freebie gets up to.". So those with the paid for version are affected to.


This is why I have a linux box at all. Builtin open source firewalls/media players etc. that don't report your behavour to the highest bidder. Windows is full of this spying stuff.
 

mugs

Lifer
Apr 29, 2003
48,920
46
91
Woah, Checkpoint has an office in my building. I should go ask them what the deal is. :p
 

Diasper

Senior member
Mar 7, 2005
709
0
0
Latest Pro version here. Am I affected by this?

From what the articles and what other people are saying - very probably.


Woah, Checkpoint has an office in my building. I should go ask them what the deal is. :p

Lol. Yeah go up there and demand people's data back :p
 

Diasper

Senior member
Mar 7, 2005
709
0
0
Useful blog entry here:

http://iggyz.com/blog/_archives/2006/1/23/1719960.html

If you can make it all the way through the lack of paragraph breaks it follows on the basic along the lines of nothing to worry about.

That said if for anyone still feeling funny you can disable the firewall contacting home - editing the hosts file should be one way of doing it.

Just out of interest what is the best firewall these days - paid or otherwise?
 

DaveSimmons

Elite Member
Aug 12, 2001
40,730
670
126
This is suspicious, a check for update only needs to retrieve information not send it.

Our company just does an HTTP GET to a static web page.
 

pontifex

Lifer
Dec 5, 2000
43,804
46
91
Originally posted by: DaveSimmons
This is suspicious, a check for update only needs to retrieve information not send it.

Our company just does an HTTP GET to a static web page.

err...isn't that the same thing? the software sends out a message with the software's current version info to the server checking to see if there is a new version. if there is, it downloads it...
 

itachi

Senior member
Aug 17, 2004
390
0
0
that's what they said. "the communication in dispute is a simple encrypted GET..". the only information it's sending, according to them, is the request.
 

DaveSimmons

Elite Member
Aug 12, 2001
40,730
670
126
Originally posted by: pontifex
Originally posted by: DaveSimmons
This is suspicious, a check for update only needs to retrieve information not send it.

Our company just does an HTTP GET to a static web page.

err...isn't that the same thing? the software sends out a message with the software's current version info to the server checking to see if there is a new version. if there is, it downloads it...
No, we just get the latest version available from the server, there is no reason why our software needs to send its own version.

For example, you're running FooBar 1.1.12, you send an HTTP GET to the server (which does NOT need to include anything beyond a URL for a page on the server) and get back a response saying the latest version is 1.1.16. FooBar decides .16 is higher than .12 and tells the user an update is available.

I'm not saying this is the only way version checks can work, just showing that they can be done sending zero information beyond a static page request like GET www.foobar.com/folder/version.htm with empty body and no cookies. We have tens of thousands of users doing it now.
 

Diasper

Senior member
Mar 7, 2005
709
0
0
Btw didn't the original author say (from whom this whole debacle started) that there was quite a significant amount of data sent - from files growing rather quickly. I may be wrong but I certainly don't know how that would factor in.

If true that doesn't seem readiy explanable/fit into the explained reason. That said this lies outside my area of expertise.
 

Atheus

Diamond Member
Jun 7, 2005
7,313
2
0
Originally posted by: ShotgunSteven
ZoneAlarm screwed up my system so bad I had to reformat. I refuse to use their product again.

Really? It's not that bad is it? I havent used it since v5, but back then it was quite lightweight and easy to install/uninstall.

Originally posted by: DaveSimmons
No, we just get the latest version available from the server, there is no reason why our software needs to send its own version.

DaveSimmons works for Chckpoint?
 

Doom Machine

Senior member
Oct 23, 2005
346
0
0
omg..here comes the paranoid freaks

its not like some men in black are going to show up at your door, its not like your suddenly going to lose all your assets and be on the run from the government, you all watch too many movies lmao
 

John

Moderator Emeritus<br>Elite Member
Oct 9, 1999
33,944
4
81
Originally posted by: ShotgunSteven
ZoneAlarm screwed up my system so bad I had to reformat. I refuse to use their product again.

I've never cared for their products. If you have a little common sense you don't need to use a software firewall anyhow. It's one less piece of software that has to run in the background and annoy you with messages.
 

DaveSimmons

Elite Member
Aug 12, 2001
40,730
670
126
Originally posted by: Atheus
Originally posted by: DaveSimmons
No, we just get the latest version available from the server, there is no reason why our software needs to send its own version.
DaveSimmons works for Chckpoint?
No I work for Respondus, Inc.

I was explaining that a check for update system does not need to send any information to the server, and certainly does not need to send large amounts of encrypted information.

In other words, the ZA folks may be lying.

If they wanted to show their innocence they could reveal the encryption method and private key used so that outsiders could decode the encrypted data and see whether it is more than a version number.
 

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
Technically data could be transmitted using a GET command too.

GET /server/file?myversion=5.1145?mycreditcardnumber=11111111111111111111

The server knows your credit card number, and it's just a GET command.
 

DaveSimmons

Elite Member
Aug 12, 2001
40,730
670
126
Originally posted by: xtknight
Technically data could be transmitted using a GET command too.

GET /server/file?myversion=5.1145?mycreditcardnumber=11111111111111111111

The server knows your credit card number, and it's just a GET command.
True, which is why I mentioned a static page URL, empty body, and no cookies. For completeness I should add no custom headers are sent either :)

If you used a packet sniffer on my company's check for update you'd see it GETs an HTM page not a CGI page and that notihing else is sent besides stock browser headers.