All Projects → jafarlihi → rconn

jafarlihi / rconn

Licence: MIT license
rconn is a multiplatform program for creating generic reverse connections. Lets you consume services that are behind firewall or NAT without opening ports or port-forwarding.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to rconn

tunman
Comprehensive solution for SSH tunnels - respawning, healthchecking/monitoring
Stars: ✭ 43 (-81.39%)
Mutual labels:  reverse-proxy, port-forwarding, firewall-bypass
Mole
CLI application to create ssh tunnels focused on resiliency and user experience.
Stars: ✭ 1,520 (+558.01%)
Mutual labels:  port-forwarding, port-forward
Kubefwd
Bulk port forwarding Kubernetes services for local development.
Stars: ✭ 2,713 (+1074.46%)
Mutual labels:  port-forwarding, port-forward
mps
MPS is a high-performance HTTP(S) proxy library that supports forward proxies, reverse proxies, man-in-the-middle proxies, tunnel proxies, Websocket proxies. MPS 是一个高性能HTTP(s)中间代理库,它支持正向代理、反向代理、中间人代理、隧道代理、Websocket代理
Stars: ✭ 64 (-72.29%)
Mutual labels:  reverse-proxy, reverse
Ble Security Attack Defence
✨ Purpose only! The dangers of Bluetooth Low Energy(BLE)implementations: Unveiling zero day vulnerabilities and security flaws in modern Bluetooth LE stacks.
Stars: ✭ 88 (-61.9%)
Mutual labels:  reverse-proxy, reverse
Reverse Shell Cheatsheet
🙃 Reverse Shell Cheat Sheet 🙃
Stars: ✭ 297 (+28.57%)
Mutual labels:  reverse-shell, reverse-proxy
crank4go
API Gateway implemented in Golang
Stars: ✭ 124 (-46.32%)
Mutual labels:  reverse-proxy, reverse
Charon Spring Boot Starter
Reverse proxy implementation in form of a Spring Boot starter.
Stars: ✭ 155 (-32.9%)
Mutual labels:  reverse-proxy, reverse
ReversePowerShell
Functions that can be used to gain Reverse Shells with PowerShell
Stars: ✭ 48 (-79.22%)
Mutual labels:  reverse-shell, reverse
Revshellgen
Reverse shell generator written in Python 3.
Stars: ✭ 190 (-17.75%)
Mutual labels:  reverse-shell, reverse
aiotunnel
HTTP tunnel on top of aiohttp and asyncio
Stars: ✭ 29 (-87.45%)
Mutual labels:  port-forwarding, port-forward
SarcasmGeneration-ACL2020
A retrieve and edit approach to generate sarcasm by reversing valence and adding incongruent common sense context
Stars: ✭ 22 (-90.48%)
Mutual labels:  reverse
raisin
Reverse shell and rootkit
Stars: ✭ 18 (-92.21%)
Mutual labels:  reverse
s3-proxy
S3 Reverse Proxy with GET, PUT and DELETE methods and authentication (OpenID Connect and Basic Auth)
Stars: ✭ 106 (-54.11%)
Mutual labels:  reverse-proxy
shield
Shield is a role-based cloud-native user management system, identity & access proxy, and authorization server for your applications and API endpoints.
Stars: ✭ 158 (-31.6%)
Mutual labels:  reverse-proxy
opennotr
开源内网穿透,Open source NAT traversal (http://www.notr.tech)
Stars: ✭ 33 (-85.71%)
Mutual labels:  reverse-proxy
hyper-reverse-proxy
A simple reverse proxy for use with Hyper and Tokio
Stars: ✭ 94 (-59.31%)
Mutual labels:  reverse-proxy
MsfMania
Python AV Evasion Tools
Stars: ✭ 388 (+67.97%)
Mutual labels:  reverse-shell
shellbin
The source code of https://rshell.dev
Stars: ✭ 22 (-90.48%)
Mutual labels:  reverse-shell
ReHitman
Hitman Blood Money Reverse Project
Stars: ✭ 29 (-87.45%)
Mutual labels:  reverse

rconn (r[everse] conn[ection]) is a multiplatform program for creating reverse connections. It lets you consume services that are behind NAT and/or firewall without adding firewall rules or port-forwarding. This is achieved by creating a connection from the node behind the firewall/NAT to a port on your local machine, and then a port is exposed in your machine through which you can connect to the service that is behind firewall/NAT. All traffic is routed through the initial connection that was opened by the machine behind firewall/NAT.

Building

Build with: go build.

Explanation

diagram

Say your IP address is 11.11.11.11, and you've got machine 22.22.22.22 behind firewall/NAT and you want to connect to it via RDP. First you'd have to make sure your RDP server is running, normally on 3389. Now the problem is you can't connect to 3389 from outside because of NAT or firewall. Then in your local machine you'd have to run this: rconn -s 1111 2222 And in the machine behind firewall/NAT you'd have to run this: rconn -c 11.11.11.11 1111 127.0.0.1 3389 Now you can connect to your own port 2222 with an RDP client, this will effectively be same as connecting to 22.22.22.22:3389.

Usually most firewalls allow all outbound traffic but if this is not the case then you can try 80 or 443 instead of 1111.

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].