是否可以通过编程方式更改 unix 进程的可执行文件名称 (ucmd)?

发布于 2024-11-26 16:29:58 字数 399 浏览 1 评论 0原文

是否可以通过编程方式更改 ps 报告的 unix 进程的可执行文件名称 (ucmd)?

unix/POSIX 方式会很好,但 Linux 特定的解决方案就足够了。

我想更改此处报告的内容,

> ps -o ucmd    
CMD
zsh
ps

;)

> ps -o command
COMMAND
zsh
ps -o command

谢谢

而不是这个,我知道这个 不尝试创建 rootkit,只是 net-snmp 在检查进程时查看此名称,并且我的程序在从 init 调用时和直接从 /etc/init.d 调用时具有不同的名称(etc/rcX.d/SNNname 而不是只是名字)。

Is it possible to programatically change an executable name (ucmd) of a unix process as reported by ps?

unix/POSIX way would be nice but Linux specific solution would suffice.

I want to change what is reported here

> ps -o ucmd    
CMD
zsh
ps

not this, this I know ;)

> ps -o command
COMMAND
zsh
ps -o command

thanks

P.S. Not trying to create a rootkit, its just that net-snmp looks at this name when checking processes and my program has a different name when called from init and directly from /etc/init.d (etc/rcX.d/SNNname instead of just name).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的鱼塘能养鲲 2024-12-03 16:29:58

您可以使用 prctl()PR_SET_NAME 函数来完成此操作:

prctl(PR_SET_NAME, (unsigned long)"xyzzy", 0, 0, 0);

但是,/etc/rcX.d/SNNname 应该是 (符号链接到a) 启动进程的脚本,而不是指向进程可执行文件本身的链接。这样也能解决问题。

You can do this with the PR_SET_NAME function of prctl():

prctl(PR_SET_NAME, (unsigned long)"xyzzy", 0, 0, 0);

However, /etc/rcX.d/SNNname should be a (symlink to a) script that starts your process, not a link to the process executable itself. This would also solve the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文