1. HAPPY NEW YEAR!!!
  2. Release by VR timebombs. VR tried to force-validate serial by old routine by
  3. patching but it doesn't really help. We checked their Hive2 release and we
  4. found zero timebombs are patched. Now you know that users who posts "100
  5. percent working" for their releases are zero percent trustful.
  6. At least we checked many places they haven't noticed.
  7. Let's hope we made 100 percent again this time :)
  8. ----------------------------------------------------------------------------
  9. Here is how U-he main protection works:
  10. 1. Generate value (0 - 2047) from the licensee name.
  11. We call this value "UserValue".
  12. 2. Get the hash of serial number by UrsHash.
  13. UrsHash is combination of WHIRLPOOL512 and SHA512)
  14. 3. Get hardcodedHash[UserValue] and compare with calculated hash.
  15. If it matches, license = OK.
  16. This means, serial number is not generated for users dynamically. The hash
  17. of all serial numbers are hardcoded to the app since the first release. User
  18. name is just used to determine which correct serial number to assign. This
  19. is good if dev has many customers, otherwise serial check will be dull and
  20. slow (check all hardcoded serials one by one, this is done by RobPapen).
  21. However, there is the weak point in this "wise" protection. Once legit serial
  22. numbers are leaked, that serial number can be used to other name. You can
  23. make another licensee for that serial by colliding "UserValue". This is not
  24. easy to avoid. Blacklisting the leaked serial number can affect to the legit
  25. users too, because that user may have same UserValue with leaked licensee.
  26. In short:
  27. - Uhe app contains 2048 correct hashed serial numbers.
  28. - Calculate valid serial from hashed serial is nearly impossible.
  29. - User A and User B may have same legit serial number.
  30. -> Generate another valid name for leaked serial can be possible.
  31. Enjoy checking many security aspects for the uhe type protection.
  32. These UserValue+Hash protection is used by Arturia, Audiority, SonicAcademy,
  33. LVC-Audio, Youlean etc. Valid user+serial pair can be made from legit serial.

R2R