mindedsecurity / JStillery

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

SyntaxError: Unexpected token * #13

Closed hundan2020 closed 6 years ago

hundan2020 commented 6 years ago

i don't know if it is my problem...because it worked for you...but i do face the problem. i was started in powershell.

error

command:

echo 'a= String.fromCharCode(41);b=a'| node ./jstillery_cli.js

response: 1

*command:

npm start

response: 2

*command:

node ./jstillery_cli.js

response: 3

my environment

node version: v6.11.2 npm version: 3.10.10 OS: windows 10 1709 x64

wisec commented 6 years ago

the ** operator works on node > 6 You'll need node >= 7 Sorry about that.

hundan2020 commented 6 years ago

thank you