# JStillery **Repository Path**: github-source/JStillery ## Basic Information - **Project Name**: JStillery - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-07-09 - **Last Updated**: 2023-11-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # JStillery Advanced JS Deobfuscation via Partial Evaluation. See http://blog.mindedsecurity.com/2015/10/advanced-js-deobfuscation-via-ast-and.html # REPL https://mindedsecurity.github.io/jstillery/ # Install ``` npm install ``` # Usage ## Cli Deobfuscate file: ``` ./jstillery_cli.js filename ``` Deobfuscate from stdin ``` echo 'a= String.fromCharCode(41);b=a'| ./jstillery_cli.js ``` ## Server Build server code: ``` npm run build_server ``` If you wish change ```server/config_server.json``` Then launch the server: ``` npm run start_server ``` Visit http://0:3001/ ## RESTServer Launch server then: ``` $ curl 'http://localhost:3001/deobfuscate' -d '{"source":"a=1"}' -H 'Content-type: application/json' {"source":"a = 1;"} ``` ## Web UI Add obfuscated code to the upper text area and press CTRL-ENTER. ![image](https://user-images.githubusercontent.com/1196560/35220393-836aafd0-ff76-11e7-8ba9-86369e23573a.png?s=200) # LICENSE GPL 3.0 # Contribute Feel free to contribute in any way!