Slashdot Mirror


Building Deception Into Encryption Software

holy_calamity writes "MIT Technology Review reports on a new cryptosystem designed to protect stolen data against attempts to break encryption by brute force guessing of the password or key. Honey Encryption serves up plausible fake data in response to every incorrect guess of the password. If the attacker does eventually guess correctly, the real data should be lost amongst the crowd of spoof data. Ari Juels, who invented the technique and was previously chief scientist at RSA, is working on software to protect password managers using the technique."

4 of 106 comments (clear)

  1. Re:This is more of authentication than encryption. by js_sebastian · · Score: 5, Informative

    TFA was murky, but generating bogus data? If one is brute forcing a data blob, how can it make stuff up?

    Actually, it wasn't murky. That it cannot work for arbitrary data types is spelled out towards the end. This is for data of which the encryption system knows the data type well enough to fake it, and the encryption system has to be built to target the specific data type. The examples given are credit card numbers or passwords.

    For instance imagine a password manager that, for every decryption attempt with a wrong master password, returns a different set of bogus but plausible passwords. How would a brute force attack automatically determine which one is the "real" set of passwords of the user, even if it can guess the right password?

  2. Re:Fake info generation to stop intrusive phone ap by sayno2quat · · Score: 5, Informative

    There is XPrivacy, which uses the XPosed framework. That doesn't disable permissions, but rather sends fake data to the app.

    --
    Sure I sold you robot insurance. But you were attacked by a cyborg. Not covered.
  3. Re:This is more of authentication than encryption. by Anonymous Coward · · Score: 2, Informative

    No, the idea is that the protection is built into the algorithm itself. Rolling your own decryptor would spit out the same fake info for the same key. To balance this out, the algorithm works only for limited types of data.

  4. Re:interesting idea by aviators99 · · Score: 3, Informative

    The criminal doesn't care, as long as their goal is met (get a valid card - it doesn't have to be yours). If we're talking about "invalid" data, then we need some mechanism to validate the generated data before it's returned.

    If you are worried about a random credit card generating algorithm generating real credit card numbers via this method, you should be just as worried about attackers using the same random number generator on their own!