VBScript encrypter and decrypter

This site allows you to encrypt and decrypt vbscript files. Upload a .vbs file to encrypt it, upload a .vbe file to decrypt it.

The encoding Feature, which is provided with every Windows Version, is often used to hide code in malicious scripts, so the desire to decode (or decrypt) is only natural.

Upload


Running encrypted files

An encrypted vbs file can be launched directly in windows if it is has .vbe file extension.
If an encrypted script runs into an error, it still shows the line number from the source script in the error message.
Only publish encrypted files if the decrypted version has been tested.

Detecting encrypted files

You can check the file name extension, which should be .vbe, instead of .vbs.
As an alternative you can open the file in a text editor.
The content should start with #@~^XXXXXX== and end with ==^#~@ plus a "null" char, which is not visible in most editors.

Test script

If you need a script to play with, you can download this. This extracts and runs Rick dangerous but you obviously are not required to run the script to test the encrypter. If you want to, you can make a script on your own. Just open a plain text editor like windows notepad, type MsgBox "Test" and save the file. Make sure the file name ends in .vbs and you select "All files" in the type drop-down.

Limitation

This encryption type has severe limitations you have to be aware of:
© 2017 by AyrA