目的:将内网web中kali映射到公网,通过公网访问特定的域名就能登录到内网中的kali系统
安装 shellinabox( shellinabox 与 GateOne 二选其一即可 推荐 shellinabox, GateOne 已经长时间没有更新了 )
#启动
apt-get install shellinabox
#启动
shellinaboxd -b -t #参数b:后台运行 #参数t:http协议运行 默认4200端口
#访问
浏览器访问 127.0.0.1:4200
安装 GateOne
安装 GateOne
GateOne github地址 :https://github.com/liftoff/GateOne
#下载
git clone https://github.com/liftoff/GateOne.git
cd GateOne
#安装模块依赖
pip install html5lib==0.999
pip install tornado==4.0
pip install futures
#使用 python2.7 安装,因GateOne中使用了async关键词,python 3.5将async作为了保留关键字,在启动时会报错
python2.7 setup.py install
安装ngrok
npm install ngrok -g
3.通过ngrok 将web端口映射到外网
nohup ngrok http 4200 & #以 shellinabox 为例
上次更新时间 20 3 月, 2023 at 09:41 上午