Search results

  1. D

    [BETA] Ioncube Decoder

    Yes, that's more or less the reply that I would have sent (I'm a lawyer and PHP developer myself). There's one thing to add, it "might" be illegal to reverse engineer the ioncube code and spread it, as it's covered by copyright laws, but it's not illegal to decode a third party product (the...
  2. D

    [BETA] Ioncube Decoder

    Want to kick them in the nuts? Release your decoder as open source for the world to have, that way they can't prosecute every single user and they will have 2 options, to release their code themselves or to completely re-design their encryption engines.
  3. D

    [BETA] Ioncube Decoder

    Did the ioncube people send you any kind of threat? I mean, because of your message in the alpha site.
  4. D

    [BETA] Ioncube Decoder

    Good to know that it's not a project that has fallen into oblivion :).
  5. D

    [BETA] Ioncube Decoder

    Any updates? I see that development in the alpha site has stalled and the copy in decod.in isn't even as complete as the one in the alpha site...
  6. D

    [BETA] Ioncube Decoder

    Some functions are being treated as variables, for an instance: $request = 'remote=licenses&type=1&license_key='.urlencode ($base64_encode It should be urlencode(base64_encode. Or also: $product_id = array(substr ($md5 ($product_license_id Should be substr(md5($product_license_id I know...
  7. D

    [BETA] Ioncube Decoder

    However if you try this file: http://megaupper.com/files/00WXKBBE/functions.php.zip You'll see that no code is displayed. Not to bother you, but trying to assist you in finding bugs and missing things.
  8. D

    [BETA] Ioncube Decoder

    Wow, you're really getting close to the final result!! Kudos to you and to those that are involved in the project.
  9. D

    [BETA] Ioncube Decoder

    I'm getting even more binary code than before... I just hope that it's because you're fixing something :)
  10. D

    [BETA] Ioncube Decoder

    I see some improvements with one of the files, for an instance $variable[4] isn't shown as $variable,[4] anymore which is good. However another file that was already showing some partial code is spitting out binary data again.
  11. D

    [BETA] Ioncube Decoder

    But I can't find any reference to that function, nor there isn't any include nor require that could be calling another file with the function definition. As a side note, it can't be valid even if it's a function name because the actual number of parameters passed to substr would be only 1 (the...
  12. D

    [BETA] Ioncube Decoder

    /* Unknown opcode: 70 (ZEND_FREE) */ /* Unknown opcode: 74 (ZEND_UNSET_VAR) */ I aso noticed that something wasn't decoded right here: $product_id = array(substr ($d5 ($product_license_id,0,8)); Since moving it to a single line would be: $product_id =...
  13. D

    [BETA] Ioncube Decoder

    Yes, that did the trick. Is there anything I can do to help you guys?
  14. D

    [BETA] Ioncube Decoder

    You're close to becoming my coding hero. I know some programming languages and I've been trying to crack ioncube encoded files for a while without any success. However I see some things getting worse with your decoder, yesterday I tried a file that was almost completely decoded, well if not...
Back
Top