Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const readline = require('readline'); | |
| const readFile = readline.createInterface({ | |
| input: fs.createReadStream('file.in'), | |
| output: fs.createWriteStream('file.out'), | |
| terminal: false | |
| }); | |
| readFile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var call = Function.prototype.call; | |
| Function.prototype.call = function() { | |
| console.log(this, arguments); | |
| return call.apply(this, arguments); | |
| }; | |
| }()); |
Moved to git repository: https://github.com/denji/jetbrains-cleanup-backup
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
Quick backup JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-backup.sh | bash -s