A Decentralized Lie Detector
11–20 of 27 posts
Re: A Decentralized Lie Detector
#12This doesn't address Sybil attacks. Bitcoin is unique in that it presented the first viable decentralized solution to Sybil attacks (via proof-of-work). To leverage that solution here, it would require that only people who successfully solve the proof-of-work puzzle are able to submit statements to the "decentralized lie detector", otherwise I could just spin up a billion VMs to spread the lies I wanted. The only oth…
People have suggested proof-of-work as a way to stop spam. Legitimate users wouldn't notice if their computer spent a few seconds generating a proof in the background as the email is being sent out. The only problem is that spammers have access to vast amounts of computing power in the form of zombie PCs. The reason proof-of-work worked for bitcoin back when an army of zombie PCs could have legitimately controlled 51…
And this was assuming TEN SECONDS of your whole smart phone (or PC!) hanging to send an email. That seems rather unacceptable. And what if you have even 3 recipients? Do you have to wait 30 seconds?
So proof-of-work in this way is really a no-go. On the other hand, slowing down spam servers by trickling through the connection with them, saturating their number of active open connections, seems like it's a good way to limit the amount of spam coming from them, assuming you can be sure they're spam-servers. Better doing that at the mail server end than trying to put that work into the client.
--
Incidentally, this is the same reason you can't hash something with a small address space (such as social security number, of which there are one billion possible numbers (according to Google if you google the phrase "how many possible social security numbers are there".)
Say you don't want to send your SSN in the plain, you just want to store a hash so that you can verify it but can't recover it.
Well, this doesn't work. An idea you might have is to securely hash it with a long, random nonce so that nobody can use a precomputed lookup table. Well, if you want to be able to verify the number next time, you need to store the nonce. So you're storing the nonce (salt) and the hash, but not the number.
Okay. Now someone who wants to break your number can just compute the hash with every possible SSN, of which there are a billion. That's only 2^29 and change possibilities. A 4 Ghz computer does 4 billion (2^32) operations every second multiplied by the number of cores. It can easily do 16 times as many flop's per second as your total address space, so just multiply that by the number of FLOP's you need per hash to see how few seconds it takes to brute-force it back.
So, your next idea might be, well, we'll just make the hash take really long. Use a complicated hash that takes several seconds to compute.
This works, as long as nobody has a billion times as many "yourPC-seconds" as you do. The problem is they do. If you take a few minutes to do your hash, someone else might have a billion times as many "yourPC-minutes" to do theirs. Your PC is one puny computer not dedicated to the task. Theirs can be a few thousand PC's - or highly dedicated hardware - that does nothing but that hash.
So while in a practical sense, and at great inconvenience to you, this kind of proof of work might slightly slow the rate of attack -- by making you wait seconds to minutes to computer your hash -- in fact even for cryptographic hashes it often doesn't stop a search of the entire hash space.
The bitcoin network currently performs between three hundred million and four hundred million gigahashes (billion hashes) per second. That is 300 to 400 quadrillion hashes per second. By most estimates on about $300 million in hardware.
And you're not asking for it to stop a brute-force search. You're asking it to be so inconvenient they won't bother to brute-force an address space of 1 possibility. (That even though there is only one possibility, they just won't bother to compute it; but your computer will).
I think the idea is a non-starter.
Re: A Decentralized Lie Detector
#13 Uncaught TypeError: Cannot read property 'in_china' of undefinedRe: A Decentralized Lie Detector
#14That page loads but doesn't render for me (Chrome 4.x/FF 36) ... I feel so excluded. Uncaught TypeError: Cannot read property 'in_china' of undefined
TypeError: $S.global_conf is undefined blog_editor-8c9dc8f38e8dff53f0a4430e9075aaca.js:35040
"Invalid App Id: Must be a number or numeric string representing the application id." all.js:61
"FB.getLoginStatus() called before calling FB.init().
http://www.motherfuckingwebsite.com/ is looking better by the day
edit: wow I'm counting over 50k lines of JS in this page.. I think it's this: https://github.com/craigcollie/Bobcat
This makes me feel sad
Re: A Decentralized Lie Detector
#15At one point in history most people believed the world was flat.
Re: A Decentralized Lie Detector
#16This doesn't address Sybil attacks. Bitcoin is unique in that it presented the first viable decentralized solution to Sybil attacks (via proof-of-work). To leverage that solution here, it would require that only people who successfully solve the proof-of-work puzzle are able to submit statements to the "decentralized lie detector", otherwise I could just spin up a billion VMs to spread the lies I wanted. The only oth…
People have suggested proof-of-work as a way to stop spam. Legitimate users wouldn't notice if their computer spent a few seconds generating a proof in the background as the email is being sent out. The only problem is that spammers have access to vast amounts of computing power in the form of zombie PCs. The reason proof-of-work worked for bitcoin back when an army of zombie PCs could have legitimately controlled 51…
It's called greylisting, and it works really well as a cheap and easy spam prevention mechanism. I wrote an implementation and used it for years as a first-line-of-defence; it let me use a crappy little 32MB ARM box as an SMTP server. ( http://spey.sf.net )
Re: A Decentralized Lie Detector
#17Something isn't necessarily true just because the majority of people believe it to be true. At one point in history most people believed the world was flat.
Re: A Decentralized Lie Detector
#18This doesn't address Sybil attacks. Bitcoin is unique in that it presented the first viable decentralized solution to Sybil attacks (via proof-of-work). To leverage that solution here, it would require that only people who successfully solve the proof-of-work puzzle are able to submit statements to the "decentralized lie detector", otherwise I could just spin up a billion VMs to spread the lies I wanted. The only oth…
You think they haven't thought of that?
Re: A Decentralized Lie Detector
#19This doesn't address Sybil attacks. Bitcoin is unique in that it presented the first viable decentralized solution to Sybil attacks (via proof-of-work). To leverage that solution here, it would require that only people who successfully solve the proof-of-work puzzle are able to submit statements to the "decentralized lie detector", otherwise I could just spin up a billion VMs to spread the lies I wanted. The only oth…
Re: A Decentralized Lie Detector
#20This consensus algorithm looks pretty good, but it seems it could get into trouble in cases where the distribution of outcomes is multimodal. One thing that is mentioned is that users would be reporting on several events simultaneously (let's say k events), but it seems entirely possible that there could be strong consensus among k -1 events, but multimodality in the reported outcomes for the k th event, making it ve…