1.msf跳板代理功能
獲取到msf的shell后操作下面命令 獲取網絡接口,網卡信息:run get_local_subnets 查看路由地址:run autoroute -p 添加路由地址:run autoroute -s 192.168.22.0/24 返回上一級后台運行shell:backgroud 開啟本地代理: use auxiliary/server/socks4a set srvport 2222 exploit 成功開啟本機2222端口代理到目標主機 配置proxychains后調用工具探針Target2 在 /etc/proxychains.conf 下面加上一行:socks4 192.168.76.132 2222 用代理打開nmap:proxychains4 nmap -sT -Pn 192.168.22.0/24 -p80
2.簡單的一個建立socks工具
https://github.com/esrrhs/socksserver
./socksserver -l :4455
3.ssh
socks5代理
ssh -CfNg -D 8000 root@ip //root@ip是需要和誰連接的憑據
4.cs中的代理功能
5.冰蠍自帶的網頁代理
6.Neo-reGeorg內網穿透
項目地址 https://github.com/L-codes/Neo-reGeorg 使用: 設置密碼: python neoreg.py generate -k password 使用 neoreg.py 連接 WEB 服務器,在本地建立 socks5 代理 python neoreg.py -k password -u http://xx/tunnel.php
修改vi /etc/proxychains4.conf
后添加:
socks5 127.0.0.1 1080
使用:proxychains nmap 10.1.1.1