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?

link|improve this question

50% accept rate
I've been told that mysql hides the password when a user types it in the command line, so a w or ps won't show it. Maybe you could try to see how it achieves this (I mean, when called like mysql -u foobar -ppassword, w or similar commands show mysql -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
feedback

3 Answers

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 /proc file system for your process.

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) myargs.txt then run your program with:

myprog @myargs.txt

Of course, you'll have to modify myprog to handle the "arguments in a file" scenario.

Alternatively, you could set the arguments into environment variables and have your program use getenv.

However, I'm not aware of any method that can protect you from a suitable-empowered process (such as one run by root).

link|improve this answer
1  
I don't think it's that difficult. If I remember right, most/all of the security enhancement patchsets for Linux add an option to change the permissions on /proc/NNNNN entries to 0700, and there might even be a mount option for it in the default kernel nowadays. (The only reason I'm writing this as a comment rather than an answer is that I haven't checked on it.) – R.. May 18 '11 at 15:01
1  
Even if you stash your args in a file, you still have a program running for a fraction of a second with the visible args before they are stashed. if a user runs the w command at just the right moment, they still aren't protected. – Chris H May 18 '11 at 15:11
Can someone confirm that /proc/NNNNN is the only place that contains command line arguments? And is there any way to change permissions only for /proc/NNNNN only for some particular process (i.e. start process with these permissions changed?) Any link with further info would be appreciated. – celicni May 18 '11 at 16:06
A suitably empowered process can view everyone's information, even down to the memory held in their address spaces. It's hard to hide information from such a beast :-) – paxdiablo May 18 '11 at 23:22
@Chris, I didn't mean the program put the args in a file, I meant the user. Then the only thing passed on the command line would be the string "@myargs.txt". You don't care who sees that since all it reveals is a file name - the actual args never show up on the command line. But, again, a powerful-enough process can just go look inside your file. – paxdiablo May 18 '11 at 23:27
feedback

Modify the content of argv in your program:

#include <stdio.h>
#include <time.h>

void delay (long int msecs)
{
        clock_t delay = msecs * CLOCKS_PER_SEC / 1000;
        clock_t start = clock();
        while (clock() - start < delay);
}

void main (int argc, char **argv)
{
    if (argc == 2) 
    {
        printf ("%s\n", argv[1]);
        delay (6000);

        argv[1][0] = 'x';
        argv[1][1] = '.';
        argv[1][2] = 'x';

        printf ("%s\n", argv[1]);
        delay (5000);
        printf ("done\n");
    }
    else printf ("argc != 1: %d\n", argc);
}

Invocation:

./argumentClear foo  
foo
x.x
done

Result, viewn by ps:

asux:~ > ps auxwww | grep argu
stefan   13439 75.5  0.0   1620   352 pts/5    R+   17:15   0:01 ./argumentClear foo
stefan   13443  0.0  0.0   3332   796 pts/3    S+   17:15   0:00 grep argu
asux:~ > ps auxwww | grep argu
stefan   13439 69.6  0.0   1620   352 pts/5    R+   17:15   0:02 ./argumentClear x.x
stefan   13446  0.0  0.0   3332   796 pts/3    S+   17:15   0:00 grep argu

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.

link|improve this answer
As per Chris H, wouldn't 'ps auxwww' run at the right moment (before the program modifies the argv still reveal the command line arguments? – celicni May 18 '11 at 15:39
Well, of course. Before the program hides the parameters, they aren't hidden. Since I know of no program, which can travel in time, to hide them in the past. maybe you can prohibit the usage of ps and other programs, but I don't know how to find a list of all wellknown programs. And the user must be stopped from writing/installing own programs. Or the kernel has to be modified. You would need to kick the user, and stop his processes, start the program which modifies its arguments, before the user relogged in. If you try to hide passwords, perhaps the sudoers-file with NOPASSWD ... – user unknown May 18 '11 at 15:52
... and ssh with pre shared keys and trusted hosts is a better soluition. – user unknown May 18 '11 at 15:52
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.