Questions tagged [anonymize]

An anonymizer is a tool that de-identifies or masks data/event unidentifiable. It could be a proxy server that acts as a shield between internet and the local network or it can be a tool that consumes data from the source and modifies it into a untraceable data into the destination(like removal of sensitive/protected information).

79 questions
0
votes
1 answer

Database anonymization : Using additive noise

I want to do an experiment involving the use of additive noise for protecting a database from inference attacks. My database should begin by generating a specific list of values that have a mean of 25, Then I will anonymize these values by adding a…
sna
  • 1
  • 2
0
votes
1 answer

Why isn't my 5 layer RSA encryption working properly? the decryption doesn't return the right value

When I decrypt the 5 levels RSA encrypted message the result isn't the original message although I use the right private keys and the right private keys I have already tried playing with the integers and the amount of encryptions. It's working if I…
Tomer Dwir
  • 11
  • 3
0
votes
1 answer

How can I store user-provided data anonymously and still allow users to retrieve their data?

I am writing a Service Now Application that shall store data for each user and day anonymously. This means the records should not be relatable to a user by an admin, howecver, the user should still be able to see their records. I thought about that…
0
votes
1 answer

Wildfly: http access log IP anonymizer

For GDPR reasons I want to anonymize the IP addresses logged in WildFly's access.log files. How would I go about that? Is there some ready-made solution? Or some easy way to extend the existing logging format? I want to keep the first 3 octets of…
user1050755
  • 11,218
  • 4
  • 45
  • 56
0
votes
1 answer

Anonymize data for each distinct row in R

Example Value 15 15 15 4 37 37 37 There's three distinct values but 7 rows, below is what I want. Since I want to Anonymize my data. I keep getting the error "replacement has 3 rows, data has 7" This is the code I'm…
0
votes
1 answer

Combine anonymization of IPs in Apache logs using anonip.py with log rotation using Cronolog

I sure hope I've come to the right place. I want to anonymize IP addresses in log files (see here) while also rotating log files with Cronolog on Ubuntu 16.04. This is a slight derivation of my current CustomLog entry: CustomLog "|/usr/bin/python2.7…
Robin K
  • 437
  • 6
  • 17
0
votes
1 answer

Transform data in Azure Pipeline to make it anonymous

In my new job at a community hall in the Netherlands, we work with databases that contain privacy-sensitive data (e.g. citizen service numbers). They also recently started working with Azure, which i'm getting familiar with as we speak. So this…
Hannie
  • 417
  • 5
  • 17
0
votes
1 answer

Oracle SQL - How to format output without showing the explicit value

I'm making a query on a table of exam results. A student passes the exam if the score is above 50 %. I want the output of the query to show 1 if the exam score is above 50% (i.e. exam is passed) and 0 if the score is below 50% (i.e. exam s failed).…
0
votes
1 answer

Digest-Getting different values in all rows when modifying only one

I'm trying to create a shiny app that allows a user to select columns to encrypt where the values in each row should always be the same across subsequent runs if the data is the same. I.e. If customer name = "John" you always get "A" when running…
sc305495
  • 249
  • 3
  • 11
0
votes
1 answer

Google Analytics tracking single page and anonymize IP

I want tracking a single page and anonymize IP. There is only one URL and 5 sections. I'm not sure, if I can combine the function like this: ga('set', 'page', '/#first', '/#second', '/#third', 'anonymizeIp', true);
0
votes
1 answer

how can i build output pcap file in pcap.net in C#

I am using Pcap.net library in c# to change and anonymize packet fileds.i have already read packets from an offline pcap file and i have changed some fields in it. my question is there is any way to create output file in a pcap format after change…
Fateme E
  • 31
  • 1
  • 5
0
votes
0 answers

Text anonymization using supervised machine learning

I have a lot of text documents containing company and personal names. I have aligned text documents where the above have been manually anonymized (names replaced with a single unique character). I want to use this corpora to train a system to…
0
votes
2 answers

How to retrieve a clicked link in iOS

For security reasons, I used to use an anonymizer on mobile safari. However It was a bit annoying. If I searched for something and clicked on a link, then google returns an error message. You can try..…
user123
  • 2,711
  • 5
  • 21
  • 25
-1
votes
1 answer

classifying data masking correctly

Is data masking a synonym for anonymisation, or or is one of several methods to anonymise data? I read alot about it but now i got a bit confused. Maybe it's because people use it as a synonym, or it really is.
nercc
  • 1
  • 1
-1
votes
2 answers

how do I round by n groups in python?

I am working on a way to create anonymus data. Therefore I want to to some sort of rounding my data. But this should happen in n-groups that have the same range. minimal group should be min(a) and from there on it goes in n steps to…