gpt4 book ai didi

python - 使用 setuid/setgid 包装器执行 Python 命令

转载 作者:行者123 更新时间:2023-11-30 18:50:04 25 4
gpt4 key购买 nike

我有以下 Python 脚本,我想使用 setuid/setgid 位提供的权限来执行该脚本:

#!/usr/bin/env python3
from mypackage.cli import main as cli_main
cli_main()

但是:我想直接从 C 包装器执行命令,而不需要中间的 Python 脚本文件。

我尝试使用 execve 执行此操作,如下所示:

#include <stdlib.h>
#include <string.h>
#include <unistd.h>

const char *ENV = "/usr/bin/env";
const char *ENV_ARGS[] = { "python3", "-c", "from mypackage.cli import main as cli_main; cli_main()" };
const int NUM_ENV_ARGS = 3;

int main(int argc, char *argv[], char *envp[]) {
int total_num_args = (argc - 1) + NUM_ENV_ARGS + 1;

// Create an array of strings to hold the final arg list.
// No need to free the malloc'ed memory as it will be freed if execve succeeds,
// or when the program exits if execve fails.
char **final_args = (char **)malloc(total_num_args * sizeof(char *));
if (final_args == NULL) {
return 1;
}

// Copy the invocation and the arguments to this program into the final arg list.
memcpy(final_args, ENV_ARGS, NUM_ENV_ARGS * sizeof(char *));
memcpy(final_args + NUM_ENV_ARGS, argv + 1, (argc - 1) * sizeof(char *));
final_args[total_num_args - 1] = NULL;

return execve(ENV, final_args, envp);
}

但是当我将编译后的程序运行为 ./mycli foo bar 时,出现以下错误:

python3: illegal option -- c
usage: env [-iv] [-P utilpath] [-S string] [-u name]
[name=value ...] [utility [argument ...]]

我怎样才能做到这一点?

最佳答案

您错误地构建了参数数组。它应该与执行程序的 argv 数组完全对应,包括第 0 个元素指定程序的名称,在本例中通常为“env”或“/usr/bin/env”。因为您跳过了“env”,所以 env 会将“python3”解释为其自己的名称,如错误消息所示。该消息来自 env,而不是来自 Python。

关于python - 使用 setuid/setgid 包装器执行 Python 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40982684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com