Krule
Krule

Reputation: 6476

Anonymize user data completley

I am to build a Rails application (not that it actually matter what framework or language is used) that not only does not collect user data, but actively removes it from the server granting users absolute paranoid anonymity level.

I was thinking about solutions on how to do this and so far I have deduced that, besides not collecting any data and not using any external services:

cover most of it. However, I am still not sure if some piece of user data will get written somewhere I did not think of.

Any ideas?

Upvotes: 1

Views: 804

Answers (2)

crazycrv
crazycrv

Reputation: 2445

This is helpful. It tells about the simplest way in which you should structure your anonymizer class and related functions.

http://railspikes.com/2009/4/8/how-to-anonymize-data-with-rake

Upvotes: 1

Mikecito
Mikecito

Reputation: 2063

A couple things I would look at is your router and firewall. Sometimes they are configured to log IPs or other user data.

Upvotes: 1

Related Questions