How can I hide the command line argument for C program running in Linux so that they aren't visible to other users via "w", "ps auxwww" or similar commands?
|
feedback
|
|
It's actually rather difficult (I'll stop short of saying impossible since there may be a way I'm not aware of) to do this, especially if a user has access to the Perhaps the best way to prevent people from seeing your command line arguments is to not use command line arguments :-) You could stash your arguments in a suitably protected file called (for example)
Of course, you'll have to modify Alternatively, you could set the arguments into environment variables and have your program use However, I'm not aware of any method that can protect you from a suitable-empowered process (such as one run by | |||||||||||||||
feedback
|
|
Modify the content of argv in your program:
Invocation:
Result, viewn by ps:
Remark: My delay-function doesn't work as expected. Instead of 11 seconds, the program runs in about 2-3. I'm not the big C-programmer. :) The delay-function needs improvement here. | |||||||
feedback
|
|
As far as I know, that information is stored in kernel space. Short of writing a kernel module, you will not be able to hide this information because any program can query the proc filesystem to see the command line arguments (this is what ps does). As an alternative, you can read in your command line args on stdin then populate an array to pass to the command line argument handler. Or, better yet, add support for your program to read a configuration file that contains the same command line argument information and set the permissions so that only the owner can read the file. I hope this helps. | |||
|
feedback
|
worpswon't show it. Maybe you could try to see how it achieves this (I mean, when called likemysql -u foobar -ppassword,wor similar commands showmysql -u foobar -pxxxxxx. Other than that I cannot help you (but I agree with @paxdiablo, if you don't want them to be visible, don't use that data as command line argument). – Carlos Campderrós May 18 '11 at 15:01