console.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:scimitar 作者: parsa 项目源码 文件源码
def connect(self):
        self.con = pexpect.spawn('/usr/bin/env bash')

        for hop in self.hops:
            self.con.sendline('ssh -tt {host}'.format(host = hop))
            self.hostname = hop

        if self.target_host:
            self.con.sendline('ssh -tt {host}'.format(host = self.target_host))
            self.hostname = self.target_host

        self.con.sendline(self.ps1_export_cmd)
        self.con.expect(self.ps1_re)

        #all_sessions.append(self)

        return self
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号