1

我在 python 中创建了一个简单的反向 shell,subprocess.Popen(cmd, shell=True)用于客户端运行命令。但是,当我在用户目录中使用命令时,我得到一个 shell-init 错误。这是我尝试使用时得到的ls

shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
ls: .: Operation not permitted

以 sudo 身份运行ls命令不起作用。

值得一提的是,命令确实在用户目录之外的目录中按预期工作。

下面是调用该命令的代码:

output = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
4

1 回答 1

0

来自中文博客

[root@smart hello]# cat /root/Desktop/hello.sh 
#!/bin/bash
echo "hello"
[root@smart hello]# /root/Desktop/hello.sh
shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
hello
[root@smart hello]# cd /
[root@smart /]# /root/Desktop/hello.sh
hello
[root@smart /]# 

它说如果您删除脚本的第一行,它也可以正常工作。

[root@smart hello]# cat /root/Desktop/hello.sh 
echo "hello"
[root@smart hello]# /root/Desktop/hello.sh
hello

如果这对你也是如此。那么子进程就不是问题了。

于 2020-04-20T02:50:28.080 回答