Page 1 of 1

Protecting third party software from running with different arg

Posted: Thu Mar 16, 2017 1:17 pm
by Zimmerman
I want to protect third party executable from running with different parameters, is that possible with scripting in the vmprotect ? if so, could you show some example of doing it ? or is it the scripting only for compilation time ?

I would need to compare the arg with variable for example:

if argv[1] <> "test" then exit (don't run software)

Re: Protecting third party software from running with different arg

Posted: Thu Mar 16, 2017 2:02 pm
by Admin
The script works only at the compilation time, so you can't use it at the starting of the protected file.

Re: Protecting third party software from running with different arg

Posted: Thu Mar 16, 2017 2:10 pm
by Zimmerman
Thank you for quick answer.