Kodierungsfrage

firstlord18

Erfahrenes Mitglied
Hallo,

wie wird aus

Code:
var                                                                                                                                                 
if (randomNumber < 2) { 
     var image = document.createElement('img'); 
     image.setAttribute('src', 'http://www.domain.de/', 0); 
     image.setAttribute('width', 1, 0); 
     image.setAttribute('height', 1, 0); 
     var paragraph2 = document.getElementById('x'); 
     paragraph2.appendChild(image); 
}

das:

Code:
if(randomNumber<2){
var image=document.createElement(String.fromCharCode((0x121+2990-0xc66),(0x1555+2085-0x1d0d),(0x6c7+2366-0xf9e)));
image.setAttribute(String.fromCharCode((0x398+2892-0xe71),(0x621+7428-0x22b3),(0x14a2+1980-0x1bfb)),String.fromCharCode((0x604+2800-0x108c),(0x1358+2381-0x1c31),(0x254+302-0x30e),(0x55d+699-0x7a8),(0x31d+8593-0x2474),(0xf82+4616-0x215b),(0x1217+611-0x144b),(0x1b23+598-0x1d02),(0x19b4+3449-0x26b6),(0xf34+3160-0x1b15),(0x17ed+3082-0x23c9),(0x1070+39-0x1033),(0x6d1+3705-0x14db),(0x4a0+3767-0x12ea),(0xbc0+452-0xd23),(0x7e7+4362-0x1888),(0x483+1132-0x881),(0x266+281-0x351),(0x189a+2716-0x22d2),(0x1d80+383-0x1e9a),(0xff+5351-0x15b7)),0);
image.setAttribute(String.fromCharCode((0x11d5+2763-0x1c29),(0x75f+5601-0x1cd7),(0x117c+3524-0x1edc),(0x1c60+5-0x1bf1),(0x9da+2615-0x13a9)),1,0);
image.setAttribute(String.fromCharCode((0xfb5+287-0x106c),(0xd2f+929-0x106b),(0x917+4274-0x1960),(0x4c9+6318-0x1d10),(0x31a+4841-0x159b),(0x1d1b+1292-0x21b3)),1,0);
var paragraph2=document.getElementById(String.fromCharCode((0x1432+4606-0x25b8)));
paragraph2.appendChild(image);
}

gibt es für eine solche Kodierung eine PHP Funktion oder was ist das überhaipt für eine Kodierung?

Danke
Björn
 
Das "Zeugs" in den Klammern, z.b. 0x398+2892-0xe71, ergibt aus ausgerechnet, in dem Beispiel, 115.
Rechnung:
Code:
0x398 = 920 +
        2892 -
0xe71 = 3697 
--------------------
         115
Das ist der Dezimalwert zum ASCII-Zeichen "s".
0x398 sind dabei HEXcodes.
 
Dann müsstest du ja jetzt mit den genannten Infos und Funktionen + Google eigentlich das hinbekommen, was du vorhast.
 
Zurück