Questions tagged [http-tunneling]

HTTP Tunneling is a technique by which communications performed using various network protocols are encapsulated using HTTP.

HTTP Tunneling is a technique by which communications performed using various network protocols are encapsulated using HTTP. HTTP therefore acts as a wrapper for a channel that the network protocol being tunneled uses to communicate.

75 questions
0
votes
0 answers

How to configure Stunnel to connect to a service on HTTP[:3000] through HTTP[:80] and HTTPS[:443]

I have a PWA running on: 127.0.0.1:3000 With the following Stunnel config... /etc/stunnel/stunnel.conf client = no [default] accept = 443 cert = /etc/stunnel/example.com.pem connect = 127.0.0.1:7777 [example.com] sni = default:*example.com cert =…
davidesp
  • 2,546
  • 6
  • 25
  • 59
0
votes
1 answer

Using openssl s_client to manually fetch data through HTTPS tunnel

I have an interesting requirement to connect using openssl s_client to https website through https tunnel. I have managed to connect through this proxy (proxy_host.com) to my netcat listener on target_host.com and send a message from it which gets…
xwhyz
  • 1,296
  • 4
  • 17
  • 38
0
votes
1 answer

Ngrok returns 405 Method Not Allowed while tunneling my localhost (Laravel)

Currently working on SMS API retrieving Post request report after sending sms messages. After sending the report and try to callback the report through the API Middleware. After sms messages sent, Ngrok returns 405 Method Not Allowed. Ngrok…
N.Tec
  • 95
  • 1
  • 11
0
votes
0 answers

how do I send http CONNECT request to proxy

I am trying to send a HTTP CONNECT request to my proxy and establish a tunnel. However, the proxy always receives a request with a '/' host and the initial host I wrote is lost. For example, using requests, I…
0
votes
1 answer

How to do HTTP Tunneling over SSH for specific URLs on Chrome?

I connect to my university server via ssh using the following command: ssh myid@cs.bu.edu Another server, hidden.bu.edu is firewalled in cs.bu.edu. To access hidden.bu.edu, I have added the following lines in my ~/.ssh/config in my home…
soham
  • 1,296
  • 4
  • 23
  • 44
0
votes
1 answer

Transparent HTTP tunnel to TCP

I want to open any arbitrary TCP socket on a server, but it's behind a proxy and I can only use a port that is intended for HTTP hosting only. Simply put, what is the most transparent way to wrap such a socket into an HTTP connection? Preferably I…
Xerz
  • 284
  • 1
  • 3
  • 13
0
votes
1 answer

How to implement an HTTP relay / tunnel to access a web app?

We have web apps (ASP.Net Core hosted by IIS) running on the customers' Computers (behind a NAT). Cell phones or any other devices connected to the Internet should get access to the Web app. Restrictions: No public ip address. We do not want to…
0
votes
0 answers

Track iOS App’s Mobile data and WiFi usage

I am working on a mini project to track iOS app’s mobile data and WiFi data. I saw some apps doing that through VPN , but I had no luck with NSExtentions. Any reference is appreciated. I would like to collect device level data which includes all…
0
votes
1 answer

How to connect db from local machine that can only be connected from windows remote desktop

The question says it all. But to elaborate. I have a oracle db running at some remote host. ip: 10.0.0.121 port: 1521 It can be accessed when I connect to a windows remote desktop machine. Now how can I connect to this remote db from my local…
0
votes
1 answer

TCP connection through a HTTPS proxy

Here is what I'm trying to achieve: I have a TCP client that need to connect to our server application but I need the traffic to be done over HTTPS. As far I know, it can be done with a reverse (or forward?) proxy as followed : TCP client <--- HTTPS…
CPP_Meister
  • 1
  • 1
  • 1
0
votes
0 answers

JDBC Connection via intermediate server

I have a requirement in which I need to establish a JDBC connection via intermediate server where only the HTTP/s connection is possible from source server to intermediate server. And the intemediate server and destination server can connect to each…
0
votes
0 answers

Node Express HTTPS ERR_TUNNEL_CONNECTION_FAILED

I am running a Node/Express Server. I am able to successfully login and establish a secure connection (HTTPS) and have never had trouble connecting. However, I have two clients who are trying to log in to my server, but they cannot establish a…
Alec Daling
  • 250
  • 2
  • 12
0
votes
1 answer

Private network on AWS

I have a couple of AWS instances in different AWS regions which need to talk to each other. However, in an enterprise network, I am not supposed to open ports for communication. Is there a way to achieve this?
msingh
  • 284
  • 2
  • 10
0
votes
3 answers

Java Connection to MySQL-Database over HTTP or HTTPS

I'm working on a little java project and I have a problem. The Mysql-Protocol is blocked by the Firewall and the only ports I'm able to use are 80 or 443. Is there any way to connect to my database over these ports? Acutally I'm using the…
Flex
  • 11
  • 1
0
votes
1 answer

How to tunnel websockets over TCP in node?

I am trying to tunnel websockets over TCP. I know how to tunnel HTTPS - "Connect URL:port" is where I start. From there, one opens a socket to the target and then just pipe between the client and the target. Where do I start with websockets? is…