mindedsecurity / JStillery

Advanced JavaScript Deobfuscation via Partial Evaluation
GNU General Public License v3.0
863 stars 143 forks source link

array.join('') doesn't work as expected #34

Open thylakoids opened 4 years ago

thylakoids commented 4 years ago
// original
Ye = ['p', 'r', 'o', 't', 'o', 't', 'y', 'p', 'e'].join('');
// deobfuscate
Ye = 'p,r,o,t,o,t,y,p,e';
// expect
Ye = 'prototype';