ps 如何知道隐藏密码?

ps 如何知道隐藏密码?

证人:

$ ps f
  PID TTY      STAT   TIME COMMAND
31509 pts/3    Ss     0:01 -bash
27266 pts/3    S+     0:00  \_ mysql -uroot -p
25210 pts/10   Ss+    0:00 /bin/bash
24444 pts/4    Ss     0:00 -bash
29111 pts/4    S+     0:00  \_ tmux attach
 4833 pts/5    Ss+    0:00 -bash
 9046 pts/6    Ss     0:00 -bash
17749 pts/6    R+     0:00  \_ ps f
 4748 pts/0    Ss     0:00 -bash
14635 pts/0    T      0:02  \_ mysql -uroot -px xxxxxxxxxxxxxxxx
16210 pts/0    S+     0:01  \_ mysql -uroot -px xxxxxxxxxxxxxxxx

ps 如何知道隐藏mysql密码?我可以将其合并到我自己的脚本中以隐藏特定的 CLI 属性吗?

答案1

ps不隐藏密码。像 mysql 这样的应用程序会覆盖它们获得的参数列表。请注意,有一个很小的时间范围(可能会因高系统负载而延长),其中参数对其他应用程序可见,直到它们被覆盖。隐藏进程给其他用户可能会有所帮助。一般来说,通过文件传递密码比通过命令行传递密码要好得多。

本文它描述了C,如何做到这一点。以下示例隐藏/删除所有命令行参数:

#include <string.h>

int main(int argc, char **argv)
{
    // process command line arguments....

    // hide command line arguments
    if (argc > 1) {
        char *arg_end;    
        arg_end = argv[argc-1] + strlen (argv[argc-1]);
        *arg_end = ' ';
    }

    // ...
}

另请参阅https://stackoverflow.com/questions/724582/hide-arguments-from-pshttps://stackoverflow.com/questions/3830823/hiding-secret-from-command-line-parameter-on-unix

答案2

mysql程序将命令行中的密码替换为xin这行代码:

while (*argument) *argument++= 'x';     // Destroy argument

相关内容