反弹shell升级全交互式shell

发布时间:2023年12月29日

1、获取反弹shell(过程略)

在这里插入图片描述

2、升级到半交互式shell

python -c 'import pty;pty.spawn("/bin/bash")'

在这里插入图片描述
半交互式shell问题:1、vi编辑文件不方便;2、命令行上下左右乱码;3、不能补全等

3、升级到全交互式shell

echo $TERM
Ctrl+Z
stty raw -echo
fg
reset
tmux-256color

在这里插入图片描述
此时有个问题,输入reset之后回车会乱码^M。查看系统使用的shell解析器,需要改为bash并重启系统。

echo $SHELL
chsh -s /bin/bash
reboot

在这里插入图片描述

4、重复上面的步骤,获取全交互式shell

python -c 'import pty;pty.spawn("/bin/bash")'
Ctrl+Z
stty raw -echo
fg
reset
tmux-256color

在这里插入图片描述

在这里插入图片描述

Mark 一下

文章来源:https://blog.csdn.net/nihao_ma_/article/details/135290509
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。