How to compile a python/shell script ? (to hide informations) -
i compile script launch linux.
indeed, use babun (shell linux windows) , have scritp password in clear text...
i hide use it. use python or shell script because it's easy , quick containing linux commands.
thank you.
import os os.system("truecrypt /a /p passeword /q /e /v \"c:\users\blabla.tc\"")
and use ftp ... (to backup)
don't put password file. way hide password.
if want obfuscate it, nobody stumble accross accident:
import subprocess password = 'cgfzc3dvcmq='.decode('base64') path = "c:\users\blabla.tc" subprocess.popen(['truectypt','/a','/p',password,'/q','/e','/v',path]).communicate()
Comments
Post a Comment