I'm putting together a proof-of-concept plugin to obscure .INI directives. Question: Which directives does it make sense to hide? So far I have FirewallPassword, JabberPassword, MailPassword, and ProxyPassword.
Any others?
Any others?
All "Mail...": MailAddress, MailUser, MailServer;
also FTPCFG (though it would be better if that file itself could be encrypted on "home" systems).
I'm guessing your first version will have a hardcoded list of directives to hide. Will it at some point be user-configurable?
For example, (now) I don't care about ProxyPassword and therefore I'd rather not have it obscured, in order to minimize the number of obscured directived.
I do not think MailPort is an obfuscand. Likewise, any directive which is not defined, or whose value is an empty string, could be skipped. But how would your obfuscator work with editors? Some directives are not handled by the OPTION dialogs, and must be entered using an editor. Other tricky issues: encoding (ASCII vs. Unicode) of %_ININAME; obfuscands in included .INI files (i.e., files used by the INCLUDE directive)?