forked from shuuzhoou/doubi
-
Notifications
You must be signed in to change notification settings - Fork 51
/
socat.sh
316 lines (311 loc) · 12.4 KB
/
socat.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=================================================
# System Required: Debian/Ubuntu
# Description: Socat
# Version: 1.0.4
# Author: Toyo
# Blog: https://doub.io/wlzy-18/
#=================================================
socat_file="/usr/bin/socat"
socat_log_file="/tmp/socat.log"
Green_font_prefix="\033[32m" && Red_font_prefix="\033[31m" && Green_background_prefix="\033[42;37m" && Red_background_prefix="\033[41;37m" && Font_color_suffix="\033[0m"
Info="${Green_font_prefix}[信息]${Font_color_suffix}" && Error="${Red_font_prefix}[错误]${Font_color_suffix}" && Tip="${Green_font_prefix}[注意]${Font_color_suffix}"
Save_iptables(){
iptables-save > /etc/iptables.up.rules
}
Set_iptables(){
iptables-save > /etc/iptables.up.rules
echo -e '#!/bin/bash\n/sbin/iptables-restore < /etc/iptables.up.rules' > /etc/network/if-pre-up.d/iptables
chmod +x /etc/network/if-pre-up.d/iptables
}
check_socat(){
[[ ! -e ${socat_file} ]] && echo -e "${Error} 没有安装Socat,请检查 !" && exit 1
}
check_sys(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
#bit=`uname -m`
}
installSocat(){
[[ -e ${socat_file} ]] && echo -e "${Error} 已经安装Socat,请检查 !" && exit 1
apt-get update
apt-get install -y socat
Set_iptables
chmod +x /etc/rc.local
echo "nameserver 8.8.8.8" > /etc/resolv.conf
echo "nameserver 8.8.4.4" >> /etc/resolv.conf
socat_exist=`socat -h`
if [[ ! -e ${socat_file} ]]; then
echo -e "${Error} 安装Socat失败,请检查 !" && exit 1
else
echo -e "${Info} Socat 安装完成 ! 可以通过${Green_background_prefix} bash socat.sh add {Font_color_suffix}来添加端口转发规则 !"
fi
}
addSocat(){
# 判断是否安装Socat
check_socat
# 设置本地监听端口
while true
do
echo -e "请输入 Socat 的 本地监听端口 [1-65535]"
stty erase '^H' && read -p "(默认端口: 23333):" Socatport
[[ -z "$Socatport" ]] && Socatport="23333"
expr ${Socatport} + 0 &>/dev/null
if [[ $? -eq 0 ]]; then
if [[ ${Socatport} -ge 1 ]] && [[ ${Socatport} -le 65535 ]]; then
echo
echo "——————————————————————————————"
echo -e " 本地监听端口 : ${Red_background_prefix} ${Socatport} ${Font_color_suffix}"
echo "——————————————————————————————"
echo
break
else
echo -e "${Error} 请输入正确的数字 !"
fi
else
echo -e "${Error} 请输入正确的数字 !"
fi
done
# 设置欲转发端口
while true
do
echo -e "请输入 Socat 远程被转发 端口 [1-65535]"
stty erase '^H' && read -p "(默认端口: ${Socatport}):" Socatport1
[[ -z "$Socatport1" ]] && Socatport1=${Socatport}
expr ${Socatport1} + 0 &>/dev/null
if [[ $? -eq 0 ]]; then
if [[ ${Socatport1} -ge 1 ]] && [[ ${Socatport1} -le 65535 ]]; then
echo
echo "——————————————————————————————"
echo -e " 远程转发端口 : ${Red_background_prefix} ${Socatport1} ${Font_color_suffix}"
echo "——————————————————————————————"
echo
break
else
echo -e "${Error} 请输入正确的数字 !"
fi
else
echo -e "${Error} 请输入正确的数字 !"
fi
done
# 设置欲转发 IP
stty erase '^H' && read -p "请输入 Socat 远程被转发 IP:" socatip
[[ -z "${socatip}" ]] && echo "取消..." && exit 1
echo
echo "——————————————————————————————"
echo -e " 远程转发 IP : ${Red_background_prefix} ${socatip} ${Font_color_suffix}"
echo "——————————————————————————————"
echo
#设置 转发类型
echo "请输入数字 来选择 Socat 转发类型:"
echo "1. TCP"
echo "2. UDP"
echo "3. TCP+UDP"
echo
stty erase '^H' && read -p "(默认: TCP+UDP):" socattype_num
[[ -z "${socattype_num}" ]] && socattype_num="3"
if [[ ${socattype_num} = "1" ]]; then
socattype="TCP"
elif [[ ${socattype_num} = "2" ]]; then
socattype="UDP"
elif [[ ${socattype_num} = "3" ]]; then
socattype="TCP+UDP"
else
socattype="TCP+UDP"
fi
#最后确认
echo
echo "——————————————————————————————"
echo " 请检查 Socat 配置是否有误 !"
echo
echo -e " 本地监听端口\t : ${Red_background_prefix} ${Socatport} ${Font_color_suffix}"
echo -e " 远程转发 IP\t : ${Red_background_prefix} ${socatip} ${Font_color_suffix}"
echo -e " 远程转发端口\t : ${Red_background_prefix} ${Socatport1} ${Font_color_suffix}"
echo -e " 转发类型\t : ${Red_background_prefix} ${socattype} ${Font_color_suffix}"
echo "——————————————————————————————"
echo
stty erase '^H' && read -p "请按任意键继续,如有配置错误请使用 Ctrl+C 退出。" var
startSocat
# 获取IP
ip=`wget -qO- -t1 -T2 ipinfo.io/ip`
[[ -z $ip ]] && ip="ip"
clear
echo
echo "——————————————————————————————"
echo " Socat 已启动 !"
echo
echo -e " 本地监听 IP\t : ${Red_background_prefix} ${ip} ${Font_color_suffix}"
echo -e " 本地监听端口\t : ${Red_background_prefix} ${Socatport} ${Font_color_suffix}"
echo
echo -e " 远程转发 IP\t : ${Red_background_prefix} ${socatip} ${Font_color_suffix}"
echo -e " 远程转发端口\t : ${Red_background_prefix} ${Socatport1} ${Font_color_suffix}"
echo -e " 转发类型\t : ${Red_background_prefix} ${socattype} ${Font_color_suffix}"
echo "——————————————————————————————"
echo
}
startSocat(){
if [[ ${socattype} = "TCP" ]]; then
runSocat "TCP4"
sleep 2s
PID=`ps -ef | grep "socat TCP4-LISTEN:${Socatport}" | grep -v grep | awk '{print $2}'`
[[ -z $PID ]] && echo -e "${Error} Socat TCP 启动失败 !" && exit 1
addLocal "TCP4"
iptables -I INPUT -p tcp --dport ${Socatport} -j ACCEPT
elif [[ ${socattype} = "UDP" ]]; then
runSocat "UDP4"
sleep 2s
PID=`ps -ef | grep "socat UDP4-LISTEN:${Socatport}" | grep -v grep | awk '{print $2}'`
[[ -z $PID ]] && echo -e "${Error} Socat UDP 启动失败 !" && exit 1
addLocal "UDP4"
iptables -I INPUT -p udp --dport ${Socatport} -j ACCEPT
elif [[ ${socattype} = "TCP+UDP" ]]; then
runSocat "TCP4"
runSocat "UDP4"
sleep 2s
PID=`ps -ef | grep "socat TCP4-LISTEN:${Socatport}" | grep -v grep | awk '{print $2}'`
PID1=`ps -ef | grep "socat UDP4-LISTEN:${Socatport}" | grep -v grep | awk '{print $2}'`
if [[ -z $PID ]]; then
echo -e "${Error} Socat TCP 启动失败 !" && exit 1
else
[[ -z $PID1 ]] && echo -e "${Error} Socat TCP 启动成功,但 UDP 启动失败 !"
addLocal "TCP4"
addLocal "UDP4"
iptables -I INPUT -p tcp --dport ${Socatport} -j ACCEPT
iptables -I INPUT -p udp --dport ${Socatport} -j ACCEPT
fi
fi
Save_iptables
}
runSocat(){
nohup socat $1-LISTEN:${Socatport},reuseaddr,fork $1:${socatip}:${Socatport1} >> ${socat_log_file} 2>&1 &
}
addLocal(){
sed -i '/exit 0/d' /etc/rc.local
echo -e "nohup socat $1-LISTEN:${Socatport},reuseaddr,fork $1:${socatip}:${Socatport1} >> ${socat_log_file} 2>&1 &" >> /etc/rc.local
[[ ${release} == "debian" ]] && echo -e "exit 0" >> /etc/rc.local
}
# 查看Socat列表
listSocat(){
# 检查是否安装
check_socat
socat_total=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | wc -l`
if [[ ${socat_total} = "0" ]]; then
echo -e "${Error} 没有发现 Socat 进程运行,请检查 !" && exit 1
fi
socat_list_all=""
for((integer = 1; integer <= ${socat_total}; integer++))
do
socat_all=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh"`
socat_type=`echo -e "${socat_all}" | awk '{print $9}' | sed -n "${integer}p" | cut -c 1-4`
socat_listen=`echo -e "${socat_all}" | awk '{print $9}' | sed -n "${integer}p" | sed -r 's/.*LISTEN:(.+),reuseaddr.*/\1/'`
socat_fork=`echo -e "${socat_all}" | awk '{print $10}' | sed -n "${integer}p" | cut -c 6-26`
socat_pid=`echo -e "${socat_all}" | awk '{print $2}' | sed -n "${integer}p"`
socat_list_all=${socat_list_all}"${Green_font_prefix}"${integer}". ${Font_color_suffix}进程PID: ${Red_font_prefix}"${socat_pid}"${Font_color_suffix} 类型: ${Red_font_prefix}"${socat_type}"${Font_color_suffix} 监听端口: ${Green_font_prefix}"${socat_listen}"${Font_color_suffix} 转发IP和端口: ${Green_font_prefix}"${socat_fork}"${Font_color_suffix}\n"
done
echo
echo -e "当前有${Green_background_prefix}" ${socat_total} "${Font_color_suffix}个Socat转发进程。"
echo -e ${socat_list_all}
}
delSocat(){
# 检查是否安装
check_socat
# 判断进程是否存在
PID=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $2}'`
if [[ -z $PID ]]; then
echo -e "${Error} 没有发现 Socat 进程运行,请检查 !" && exit 1
fi
while true
do
# 列出 Socat
listSocat
stty erase '^H' && read -p "请输入数字 来选择要终止的 Socat 进程:" stopsocat
[[ -z "${stopsocat}" ]] && stopsocat="0"
expr ${stopsocat} + 0 &>/dev/null
if [[ $? -eq 0 ]]; then
if [[ ${stopsocat} -ge 1 ]] && [[ ${stopsocat} -le ${socat_total} ]]; then
# 删除开机启动
socat_del_rc1=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $8}' | sed -n "${stopsocat}p"`
socat_del_rc2=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $9}' | sed -n "${stopsocat}p"`
socat_del_rc3=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $10}' | sed -n "${stopsocat}p"`
socat_del_rc4=${socat_del_rc1}" "${socat_del_rc2}" "${socat_del_rc3}
#echo ${socat_del_rc4}
sed -i "/${socat_del_rc4}/d" /etc/rc.local
# 删除防火墙规则
socat_listen=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $9}' | sed -n "${stopsocat}p" | sed -r 's/.*LISTEN:(.+),reuseaddr.*/\1/'`
socat_type=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $9}' | sed -n "${stopsocat}p" | cut -c 1-4`
if [[ ${socat_type} = "TCP4" ]]; then
iptables -D INPUT -p tcp --dport ${socat_listen} -j ACCEPT
else
iptables -D INPUT -p udp --dport ${socat_listen} -j ACCEPT
fi
Save_iptables
socat_total=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | wc -l`
PID=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | awk '{print $2}' | sed -n "${stopsocat}p"`
kill -2 ${PID}
sleep 2s
socat_total1=$[ $socat_total - 1 ]
socat_total=`ps -ef | grep socat | grep -v grep | grep -v "socat.sh" | wc -l`
if [[ ${socat_total} != ${socat_total1} ]]; then
echo -e "${Error} Socat 停止失败 !" && exit 1
else
echo && echo " Socat 已停止 !" && echo
fi
break
else
echo -e "${Error} 请输入正确的数字 !"
fi
else
echo "取消..." && exit 1
fi
done
}
# 查看日志
tailSocat(){
[[ ! -e ${socat_log_file} ]] && echo -e "${Error} Socat 日志文件不存在 !" && exit 1
echo && echo -e "${Tip} 按 ${Red_font_prefix}Ctrl+C${Font_color_suffix} 终止查看日志" && echo
tail -f ${socat_log_file}
}
uninstallSocat(){
check_socat
echo "确定要卸载 Socat ? [y/N]"
stty erase '^H' && read -p "(默认: n):" unyn
[[ -z ${unyn} ]] && unyn="n"
if [[ ${unyn} == [Yy] ]]; then
PID=$(ps -ef | grep "socat" | grep -v grep | grep -v ".sh" |awk '{print $2}')
[[ ! -z "${PID}" ]] && kill -9 "${PID}"
apt-get remove --purge socat -y
sed -i "/socat/d" /etc/rc.local
[[ -e ${socat_file} ]] && echo -e "${Error} Socat 卸载失败,请检查 !" && exit 1
echo && echo -e "${Info} Socat 已卸载 !" && echo
else
echo && echo "卸载已取消..." && echo
fi
}
check_sys
[[ ${release} != "debian" ]] && [[ ${release} != "ubuntu" ]] && echo -e "${Error} 本脚本不支持当前系统 ${release} !" && exit 1
action=$1
[[ -z $1 ]] && action=install
case "$action" in
install|add|del|list|tail|uninstall)
${action}Socat
;;
*)
echo "输入错误 !"
echo "用法: {install | add | del | list | tail | uninstall}"
;;
esac