Hacking Discussion Team executor SX OS Hacking challenge

  • Thread starter Thread starter JaRocker
  • Start date Start date
  • Views Views 22,915
  • Replies Replies 56
  • Likes Likes 2
a tx-endorsed hacking challenge? that's pretty brave.

or something else? :)
Not really they have been clones of Team executor products for years

--------------------- MERGED ---------------------------

I will put 15 USD in BTC at the tab.
If I knew how to start a donation pull towards hacking I would
 
It's something xD
Code:
function fileSelected(o) {
    $(o).parent().parent().find('.form-control').html($(o).val().split(/[\\|/]/).pop());
    hideError();

    var reader = new FileReader();
    reader.onload = function () {
        var arrayBuffer = this.result;
        bytes = new Uint8Array(arrayBuffer);
        csr_data = '';
        for (i = 0; i < bytes.length; i++) {
            csr_data += ("0" + bytes[i].toString(16)).substr(-2);
        }

        if (csr_data.substr(0x40, 0x40) == "0".repeat(0x40)) {
            $("#license-code-form").show();
        } else {
            $("#license-code-form").hide();
            sign_csr(csr_data, null);
        }
    }
    reader.readAsArrayBuffer(o.files[0]);
}
 

Site & Scene News

Popular threads in this forum