Yzöwl i've an idea! Could it to be possible to obfuscate the content of a batch file?
I can create a compiled exe file from an authoring software, a GUI with a button. Clicking on that button, i can launch the CMD batch file with a specified parameter, for example:
mybatch.cmd -param
You wrote for me something like this some months ago:
@ECHO OFF
ECHO=_%~1|FINDSTR/X "_-param">NUL 2>&1||GOTO Error
ECHO Logged succesfully
>NUL PAUSE
EXIT
:Error
ECHO Error
>NUL PAUSE
EXIT
My idea is that the batch should recognize the correct parameter given (
%~1) and apply it as "algorithm key" to decode the obfuscated batch.
I hope to be explain me fine.
Thank you
This post has been edited by Caml Light: 19 September 2012 - 09:34 PM