从 Python 向交互式 shell 发送命令
有没有办法将命令发送到另一个交互式 shell?我们以metasploit中使用的meterpreter shell为例。一旦我控制了计算机并有一个 meterpreter shell 可以使用,这是否是一种从 python 代码向这个 shell 发出命令的方法?
我的意思是所有这些都来自 python 代码。
Is there a way to send command to another interactive shell ? Let's take the example of the meterpreter shell used in metasploit. Could it be a way to say command to this shell from python code, as soon as I get control of a computer and have a meterpreter shell to play with ?
I mean All this from python code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
pexpect 可能有用: http://pypi.python.org/pypi/pexpect/2.4
pexpect may be useful: http://pypi.python.org/pypi/pexpect/2.4
这一点都不容易。
您必须知道 meterpreter 是否有任何方法可以让其他程序与其通信。
如果没有,您可能需要对其进行黑客攻击,例如使用操作系统管道等才能使其正常工作。
无论如何,这种通信所需的代码可能超出了 Python 的能力范围。
It will not be easy at all.
You will have to know if meterpreter has any means for other programs to communicate with it.
If it doesn't, you might want to go through hacking through it, e.g using OS pipes, etc to be able to get it to work.
In any case, the code needed for such communication might be beyond Python's power.