Commonly used tunnel proxy tools for intranet penetration

1. A simple tutorial on ftp network penetration

download link

https://github.com/fatedier/frp/blob/dev/README_zh.md

use

1. Port mapping

Temporarily unavailable. It is also very simple, mainly modifying the client configuration file.
Reference frpc_full.inidocument.

	[common]

	server_addr = VPSIP

	server_port = 7000

	 

	[ssh]

	type = tcp

	local_ip = 127.0.0.1

	local_port = 22

	remote_port = 6000

	[rdp]

	type = tcp

	local_ip = 127.0.0.1           

	local_port = 3389

	remote_port = 7001  

	[smb]

	type = tcp

	local_ip = 127.0.0.1

	local_port = 445

	remote_port = 7002

2. Intranet penetration (tunnel)

frps

VPS: The server
frps.ini file is

**

	[common]

	bind_port = 7230

	server_addr = VPSIP

	token = mytoken2d4a814454792b1fd0fed29

	dashboard_port = 7500

	dashboard_addr = 101.133.213.20

	dashboard_pwd = passwttttord

	dashboard_user = apssdmin

The first line is required, the token is for the transmission security between the client and the server.
The dashboard is a web page, which can save resources if not configured.
run

	服务端:

	nohup ./frps -c frps.ini >/dev/null 2>&1 &

short version

	[common]

	bind_port = 7000

frpc

The frpc.ini configuration file is

	[common]

	server_addr = VPSIP

	server_port = 7230

	token = mytoken2d4a814454792b1fd0fed29

	 

	[plugin_socks5]

	type = tcp

	remote_port = 6005

	plugin = socks5

	plugin_user = a3bTc

	plugin_passwd = a0b6c

	 

plugin=socks5 Configure the socks5 proxy
, that is:
run in the client or webshell nohup ./frpc -c frpc.ini >/dev/null 2>&1 &
to get the proxy

	socks5://a3bTc:a0b6c@IP:6005

2.SSH

native execution

	ssh -CfN -D 10089 -T  -o "ServerAliveInterval 60" -o "ServerAliveCountMax 120"  [email protected]

get forward proxysocks5://127.0.0.1:10089

server execution

	ssh -CfN -D 0.0.0.0:7777 -T  -o "ServerAliveInterval 60" -o "ServerAliveCountMax 120" root@VPSHOST -p 22

Get the server's proxysocks5://VPSIP:7777

​finally

In order to help you better learn about network security, the editor has prepared a set of introductory/advanced learning materials for network security for you. The contents are all notes and materials suitable for zero-based beginners. I understand, all the information is 282G in total. If you need a full set of network security introduction + advanced learning resource package, you can click to get it for free (if you encounter problems with scanning codes, you can leave a message in the comment area to get it)~

CSDN spree: "Introduction to Network Security & Advanced Learning Resource Pack" for free sharing

Network security source code collection + toolkit
Network
security interview questions
The last is the network security interview questions section that everyone is most concerned about.
insert image description here

The total data is 282G. If you need a full set of network security introduction + advanced learning resource package, you can click to get it for free ( If you encounter problems with scanning the code, you can leave a message in the comment area to get it)~

Internet Security Gift Pack: "Introduction to Internet Security & Advanced Learning Resource Pack" for free sharing

​Video supporting materials & domestic and foreign network security books and documents

Internet Security Gift Pack: "Introduction to Internet Security & Advanced Learning Resource Pack" for free sharing

Guess you like

Origin blog.csdn.net/Y525698136/article/details/131767397