vote up 0 vote down star

We are porting our Firefox toolbar to IE. I've heard horror stories of developers having their toolbars marked as Spyware or Adware by the various anti-Spyware companies, and then having an awful time trying to get them off the blacklists. What are the top things that we need to avoid doing so we don't run the risk of being marked as spyware. In case you are wondering, we are clearly not spyware, yet we do plan to access various API's, such as Twitter and Facebook.

flag
Thanks for the answer! A followup question: we are considering running a separate back-end process that handles communications to the various server API's (e.g. Twitter), and which the toolbar front-end will communicate with when it needs to send/recieve data from Twitter. Are there any issues with doing it this way? – Firefox Fan Aug 19 at 6:27
Its preferable not to pass usernames and password of users through your server - the potential for misuse as well as the appearance of misuse is just to great. This usually means that you want to handle all such communications directly from the client to the VASP. – Guss Aug 19 at 11:50
To clarify - we wont pass usernames and passwords of users through our server. We just have a backend process on the users machine that communicates directly with Twitter. This is so that if the user has multiple browser windows open, we dont have each instance of the toolbar communicating with Twitter. Does this make sense? – Firefox Fan Aug 20 at 7:49

1 Answer

vote up 3 vote down check
  1. Have a clear and concise privacy declaration which details all the information that you keep on users and how users can opt-out of this. The W3 P3P system offers very good rules on how to do just that, even if you don't go about implementing P3P itself.
  2. Use clear-text HTTP based communication for all interactions with the server - if malware researchers have a hard time understanding what you communicate to servers, then they are more likely to mark you as malware.
  3. Implement P3P in your servers.
  4. Make sure its easy to disable temporarily as well as to completely remove your toolbar.
  5. Make sure that the uninstall procedure does not leave any gotchas for the users - remove everything you've put in.
  6. Never, under any circumstances popup windows. passive notifications are OK if the user has requested them and can easily opt-out from them.

Follow these guidelines and its highly unlikely that your toolbar will be marked as malware.

link|flag
2  
Nice guidline. Short version: "Behave!" – EricSchaefer Aug 18 at 16:05

Your Answer

Get an OpenID
or

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