Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
kamen69844yWell, you remove the user, not the record of removing the user, right? :D
Next time the user might request removal of the record of removal... which you will serialise too. -
@bioDan Of course it doesn't. It doesn't even comply with the law (right to be forgotten).
-
@kamen Although I guess if you read, serialize and write it enough from database to database, eventually some service outage, bug, write error or bit flip will just forget or corrupt the record.
"Yes judge, we comply with the right to be forgotten. Our instructions for removing your account are pretty clear: Put 6 medium strength EMP devices in the back of 6 pickup trucks on every continent, park them next to the AWS datacenters in every region we're active in..." -
pmso4174y@bittersweet
Last year, we needed to audit account deletions because of that.
We needed proof that the user was deleted.
"How can you prove that you deleted his personal data?"
So we created an audit saying "Account with the username X was removed" -
@zvyn Yeah rebuilding at the moment using encrypted payloads which contain all sensitive data, and separately a salted hash of social security number to detect returning fraudulent users. We now use centralized Auth, and on GDPR removal, we just toss the encryption key.
So our method of complying with user removal requests for GDPR is:
audit.record("user {user.name} removed their account", serialize(user));
user.delete();
🤦
rant