Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
346 views

Email Anonymization Similar to Craigslist in C#

I am developing a site for which I would like to protect buyers by anonymizing their email addresses.Similar to craigslist's system, when a seller needs to contact a buyer they should be able to send ...
4
votes
3answers
392 views

Anonymize pom.xml on release

I've got artefacts which are built and released using Maven. The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. That's fine. But the ...
3
votes
1answer
75 views

Anonymizing your application database

I'd like to keep the real names, emails, and any other personal identifiable information out of my primary application database, and in another database/encrypted file. And I'm curious on if there's a ...
3
votes
2answers
148 views

Anonymize IP logging in nginx?

To respect the privacy of my users I'm trying to anonymize their ip addresses in nginx log files. One way to do this would be defining a custom log format, like so: log_format noip '127.0.0.1 - ...
2
votes
3answers
37 views

How to store data in db so that nobody with access to it can understand it?

We are soon releasing a private beta of a domestic economy website. The website of course gathers information from a user's (identified by email only) private financial situation: salary, rent, ...
1
vote
1answer
103 views

Anonymizing IPv6 addresses

As required by law in several countries we anonymize IP-addresses of our users in our log files. Using IPv4 we regularly just anonymize the two last bytes, eg. instead of 255.255.255.255 we log ...
1
vote
1answer
233 views

How to build an anonymouse.org clone on Google App Engine?

I like the simplicity of anonymouse.org but would like to build a free version running on Google App Engine. What would be required to do so? Is it complicated to completely hide someone's ...
1
vote
3answers
130 views

Which algorithm for hashing name, firstName and birth-date of a person

I have to save the combination of lastname, firstname and birth-date of a person as a hash. This hash is later used to search for the same person with the exactly same properties. My question is, if ...
1
vote
4answers
225 views

How can I anonymise XML data for selected tags?

My question is as follows: I have to read a big XML file, 50 MB; and anonymise some tags/fields that relate to private issues, like name surname address, email, phone number, etc... I know exactly ...