All Projects → p3nt4 → Invoke Piper

p3nt4 / Invoke Piper

Forward local or remote tcp ports through SMB pipes.

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Invoke Piper

Network
C# Network Library
Stars: ✭ 237 (-10.57%)
Mutual labels:  network
Sockpp
Modern C++ socket library.
Stars: ✭ 246 (-7.17%)
Mutual labels:  network
Setup Ipsec Vpn
Scripts to build your own IPsec VPN server, with IPsec/L2TP, Cisco IPsec and IKEv2
Stars: ✭ 16,987 (+6310.19%)
Mutual labels:  network
My Review
主要存放平时理论学习,比如java jdk源码分析、并发理论;面试、数据库、Linux、中间件、分布式、网络协议等方向
Stars: ✭ 237 (-10.57%)
Mutual labels:  network
Hiper
🚀 A statistical analysis tool for performance testing
Stars: ✭ 2,667 (+906.42%)
Mutual labels:  network
Lagrange
A Beautiful Gemini Client
Stars: ✭ 238 (-10.19%)
Mutual labels:  network
Wickedengine
3D engine focusing on modern rendering techniques and performance.
Stars: ✭ 3,148 (+1087.92%)
Mutual labels:  network
Netshoot
a Docker + Kubernetes network trouble-shooting swiss-army container
Stars: ✭ 3,709 (+1299.62%)
Mutual labels:  network
Rdbox
RDBOX is an advanced IT platform for robotics and IoT developers that highly integrates cloud-native and edge computing technologies.
Stars: ✭ 246 (-7.17%)
Mutual labels:  network
Mars
Mars is a cross-platform network component developed by WeChat.
Stars: ✭ 15,912 (+5904.53%)
Mutual labels:  network
Locha
Communicate with others and broadcast Bitcoin transactions off-grid without internet access or even power grid.
Stars: ✭ 243 (-8.3%)
Mutual labels:  network
P2p Graph
Real-time P2P network visualization with D3
Stars: ✭ 245 (-7.55%)
Mutual labels:  network
Toxy
Hackable HTTP proxy for resiliency testing and simulated network conditions
Stars: ✭ 2,698 (+918.11%)
Mutual labels:  network
React Native Fetch Blob
This project was started in the cause of solving issue facebook/react-native#854, React Native's lacks of Blob implementation which results into problems when transferring binary data.
Stars: ✭ 2,593 (+878.49%)
Mutual labels:  network
Network
Low-level networking interface
Stars: ✭ 255 (-3.77%)
Mutual labels:  network
Mqttclient
A high-performance, high-stability, cross-platform MQTT client, developed based on the socket API, can be used on embedded devices (FreeRTOS / LiteOS / RT-Thread / TencentOS tiny), Linux, Windows, Mac, with a very concise The API interface realizes the quality of service of QOS2 with very few resources, and seamlessly connects the mbedtls encryption library.
Stars: ✭ 234 (-11.7%)
Mutual labels:  network
Canvasxpress
JavaScript VisualizationTools
Stars: ✭ 247 (-6.79%)
Mutual labels:  network
Ovpm
OpenVPN Management Server - Effortless and free OpenVPN server administration
Stars: ✭ 256 (-3.4%)
Mutual labels:  network
Networkcaptureself
基于OKHttp的实用抓包小工具,你值得拥有
Stars: ✭ 255 (-3.77%)
Mutual labels:  network
Is Reachable
Check if servers are reachable
Stars: ✭ 249 (-6.04%)
Mutual labels:  network

Piper

Forward local or remote tcp ports through SMB pipes.

EXAMPLES

Local port forwarding through pipe testPipe: -L 33389:127.0.0.1:3389

SERVER: Invoke-PiperServer -bindPipe testPipe -destHost 127.0.0.1 -destPort 3389
CLIENT: net use \\serverIP /USER:User (OPTIONAL)
CLIENT: Invoke-PiperClient -destPipe testPipe -pipeHost serverIP -bindPort 33389

Admin only remote port forwarding through pipe testPipe: -R 33389:127.0.0.1:3389

SERVER: Invoke-PiperServer -remote -bindPipe testPipe  -bindPort 33389 -security Administrators
CLIENT: net use \\serverIP /USER:User (OPTIONAL)
CLIENT: Invoke-PiperClient -remote -destPipe testPipe -pipeHost serverIP -destHost 127.0.0.1 -destPort 3389

Dynamic port forwarding (using https://github.com/p3nt4/Invoke-SocksProxy): -D 1234

SERVER: Invoke-SocksProxy -bindPort 1234
SERVER: Invoke-PiperServer -bindPipe testPipe -destHost 127.0.0.1 -destPort 1234
CLIENT: net use \\serverIP /USER:User (OPTIONAL)
CLIENT: Invoke-PiperClient -destPipe testPipe -pipeHost serverIP -bindPort 1234

Issues

Protocols requiring a big amount of parallel connections may exhaust all named pipes available to the system.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].