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
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
  • 346
  • 4
  • 18
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
  • 99
  • 1
  • 2
  • 7
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…
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,281
  • 2
  • 41
  • 49
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
  • 286
  • 1
  • 3
  • 12
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…
Hades
  • 4,315
  • 3
  • 16
  • 33
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…
1
vote
1 answer

Http tunneling to pass firewall in C# (TCP)

My need is to communicate between 2 client behind NAT using http tunneling. Is it possible? What all setup is needed to achieve this (like http proxy server etc.)? Is there any library or sample code available for implementing http tunneling over…
Ramesh Soni
  • 15,343
  • 26
  • 90
  • 111
1
vote
1 answer

Access private http server

I built a Nodejs HTTP server. It's running on localhost:3000. From outside the Local Area Network, how does one make a request to the private HTTP server? Messing with the router manually is not an option; process should be automated. I've looked at…
tim-montague
  • 12,048
  • 2
  • 50
  • 40
0
votes
1 answer

how to make two layer ssh tunnel for browsing

I know how to make a one layer tunnel: ssh -ND 9898 username@mymachine and then add a sockss proxy localhost:9898 in the browser. but how to make a two layer tunnel? Suppose mymachine is not directly accessible to me but another machine…
prongs
  • 8,944
  • 19
  • 61
  • 104
0
votes
2 answers

C# MYSQL Connection

Briefly, I want to connect remote MYSQL firewalled database to my C# program I tried lots of scripts, also I made my script but it was too difficult to be true made a whole web service based DMS SSH is NOT available by the way The process is…
Ahmed Ghoneim
  • 6,268
  • 8
  • 46
  • 76
0
votes
2 answers

Asp.net http tunelling Application

Is there any open source http tunneling software written in asp.net ? I know i can simply get http response and display it in an iframe, but this is not the result want. The links should be replaced, the styles of the page content should be set…
Ozgur Dogus
  • 903
  • 3
  • 14
  • 38
0
votes
0 answers

PHP - HTTP tunnel for SSH to a remote server

I have the following problem/idea: I want to access a hidden remote machine with SSH, but the network I am in does not allow a connection through port 22 (SSH) so I want to try a HTTP or more like a HTTPS tunnel over port 443 to my SSH port 22. But…
Play_it
  • 95
  • 1
  • 7
0
votes
2 answers

Http tunnel does not work for some websites

I have written a simple http tunnel proxy server: using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; namespace TrafficMonitor { …
Zatkhahi
  • 100
  • 1
  • 9