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.

86 questions
1
vote
1 answer

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
  • 3,743
  • 10
  • 39
  • 77
1
vote
1 answer

how does HTTP Tunneling work?

I was taking a look at the JHttpTunnel library and this piece of code in OutBoundSocket.java got me a bit confused. public void connect() throws IOException{ close(); String host=getHost(); int port=getPort(); String request="/index.html?crap=1…
mihirg
  • 915
  • 2
  • 13
  • 28
1
vote
0 answers

Tunneling all subdomain request to a local machine

I am using Pagekite to tunnel all request from my cloud server to my local machine. My setup is I have this Linode cloud server with Public IP where I installed Pagekite. I am running this from my localmachine (and works, where yourdomain.com…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
0 answers

tunnelling and normal http server on the same server

I am using go-http-tunnel for local tunneling. My server domain is let's say xyz.com, clients connect to *.xyz.com. What I want to achieve is use xyz.com for normal apache server and subdomain.xyz.com for tunneling.(I want to achive it using only…
BanguluruKtm
  • 21
  • 1
  • 3
1
vote
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
  • 11
  • 1
  • 2
1
vote
2 answers

MobaXterm Proxy Corkscrew

I want to connect with SSH to my Server, at home it isn't a problem. But at work there is a HTTP Proxy between my PC and my Server. I am using MobaXterm for my SSH connection and on there Website https://mobaxterm.mobatek.net/plugins.html i can see…
Momo
  • 456
  • 5
  • 22
1
vote
1 answer

what is https and http tunnel methods in proxy?

This image is ProxyDroid application and I saw some proxy soft wares like these one. I find some free servers for http method (http proxy the famous one) and find servers for socks 4 and 5 but I cant find any server that support https and http…
user8794024
1
vote
0 answers

local app using ngrok having issue with http tunnel but not with tcp tunnel

I have an app that runs on my localhost port:3000. I am using ngrok to get a public URL. Now when i am using a tcp tunnel as below: ./ngrok tcp 3000 i get the public url as below: tcp://0.tcp.ngrok.io:14964 -> localhost:3000 I try sending REST post…
Onkar Banerjee
  • 179
  • 1
  • 2
  • 9
1
vote
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
  • 21
  • 2
1
vote
0 answers

Gstreamer rtspsrc proxy mem alloc error

Hey Guys I have one ubuntu machine with gstreamer version 1.8.3 and one arm device with gstreamer version 1.4.4, if I try to use the rtspsrc proxy setting on an gst-launch. I have the same mem allocation error on both devices. I want to test if is…
Christoph Acs
  • 68
  • 1
  • 10
1
vote
0 answers

HTTP Tunneling in Android App

In my android app, I am calling PHP Web API over HTTP but anyone can see HTTP traffic by sniffer / proxy. So I want to create HTTP tunneling through android to call my PHP Web API. I tried to search some sample code on Google to implement HTTP…
GBD
  • 15,847
  • 2
  • 46
  • 50
1
vote
0 answers

OS X / Chrome - Tunnel all traffic over HTTP Proxy?

I have written a proxy server listening on port 80 that can bypass the firewall by accessing blocked websites. It can be accessed this way: http://proxy-server/?url=http://blockedwebsite.com How can I automate this, by forwarding all requests to…
user2248259
  • 316
  • 1
  • 3
  • 13
1
vote
0 answers

socket time out in ftp4j for FTP connection using http proxy

I am using ftp4j jar for ftp client i have used HTTP tunnel connector because my FTP server (open VMS server) is behind HTTP proxy. basic commands like PWD , NOOP , CWD are working fine , but if i try to LIST & NLIST a directory or STOR a file…
1
vote
1 answer

Implementing HTTP proxy over SSL using CONNECT method from iPhone Applications

I am working on client-server solution, where my iPhone app connects to a server over TCP/IP using SSL connection. I want to make sure that entire traffic on SSL goes through the HTTP proxy server. We can specify HTTP proxy information on iPhone in…
Trident
  • 810
  • 9
  • 20
1
vote
0 answers

JSS security over http tunneling

I have a mozila.jss ssl socket and I'm using it for RMI connection. I'm trying to convert the RMI connection to RMI-over-http connection using apache server with tomcat. For the RMI-over-http I'm using RMIHttpsToCGISocketFactory. The question is how…