TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How would you anonymize the voting system for Reddit?

5 pointsby thisismyhnuserabout 9 years ago
I am creating an app much like Reddit in that there will be upvoting &amp; downvoting but there will not be comments nor user submissions. I don&#x27;t want to track users. I don&#x27;t want cookies nor anything like that. Users will not log in. I&#x27;d like an anonymous way to keep track of which users voted for what to keep integrity in the voting system...(eg allow up to n numbers of votes per user so we ignore bots, etc.).<p>Since I want to keep the data anonymous I thought about anonymizing the IP address? The system doesn&#x27;t have to be perfect and I realize an apartment building, company, etc may have multiple users at the same IP address. For instance, take the IP address of &quot;215.54.387.9&quot;...if I simply use &quot;215.54.387&quot; and leave out the last &quot;9&quot; is that enough so that votes cannot be traced back to who voted for it? My understanding is that a government entity, etc needs to match the HTTP referer in combination w&#x2F; the IP address to track down the user&#x27;s information, or am I wrong? Also, how would I deal with IPV6 addresses?<p>Is there a better way than w&#x2F; trying to anonymize the IP Addresses?

2 comments

atmosxabout 9 years ago
An IP based voting system is <i>very</i> easy to elude. Especially one without the need of creating an account. A Torguard[1] account at this point in time gives me 123 IP addresses + 7 I have available (home, office, VPS, other-office) it&#x27;s 127 votes. Putting together a script that launches OpenVPN, votes and repeats is trivial.<p>[1] I&#x27;m happy with their service but have no affiliation.
desbestabout 9 years ago
Secure hashing.
评论 #11515320 未加载