massgravel / Microsoft-Activation-Scripts

A Windows and Office activator using HWID / Ohook / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.

Home Page:https://massgrave.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question] Why is the letter A/a in base64 escaped?

SpriteOvO opened this issue · comments

commented

:: Replace - with A and _ with a before base64 conversion

I noticed that comment and all letter A/a in base64 are escaped with -/_.

Just curious about the reason for this. Is it to avoid false positives from anti-virus?

@SpriteOvO Yes, some antivirus's can detect base64 text. and flag the script based on that. Changes are made to avoid the detection.

commented

Thanks for your explanation.