The VBScript Obfuscator written in VBScript
The command line utility is interpreted under Window Scripting Host. VBScript source files can be passed as command line parameters and the obfuscated source will be printed to console.
cscript.exe vbs_obfuscator.vbs sample.vbs
You can revert the process via vbs_defuscator.vbs
cscript.exe vbs_defuscator.vbs sample_defuscated.vbs > sample.vbs
This project provides another VBScript obfuscator based on ROT47, see the code vbs_rot47_obfuscator.vbs
This project provides another VBScript obfuscator based on BASE64, see the code vbs_obfuscator_base64.vbs