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

learn more… | top users | synonyms

-1
votes
0answers
49 views

Http tunnel for a program without native support in Socks [closed]

I want to write a program that will take all the packets sent from a sertain program in my computer, add them HTTP headers (if necessary) and forward them all to a proxy server through HTTP. I know ...
1
vote
1answer
463 views

Unable to tunnel through proxy. Proxy returns “HTTP/1.1 407” via https

I try to connect to a server via https that requires authentication.Moreover, I have an http proxy in the middle that also requires authentication. I use ProxyAuthSecurityHandler to authenticate with ...
0
votes
2answers
152 views

How to program an http tunnel

I basically want to capture all the packets in a selected port and transfer them through HTTP. What is the best way of doing that? Should I use a packet capture program like SharpPcap for that? ...
1
vote
1answer
552 views

RTSP tunneled HTTP, FFMPEG

I'm trying to stream from an Axis ip camera which uses RTSP over HTTP. I can get the normal RTSP stream to work, but I can't find any information or documentation on how to actually set the tunneling ...
1
vote
3answers
549 views

Confusion regarding RTSP over HTTP tunneling

I had an confusion of which I searched but didn't get any answer. I am streaming a video file using RTSP over HTTP tunneling then when I see the wire-shark to see the packets source and destination ...
2
votes
3answers
2k views

Tunnel any kind of TCP traffic through HTTP/s

I am looking for a software to tunnel RDP or other binary TCP traffic through a HTTPS tunnel. Because many clients only have HTTP/S permitted (only port 80 and 443 open in the firewall). But there's ...
0
votes
0answers
201 views

HTTP TUNNEL MULTI PROXY CHAINS [closed]

a week ago that I'm building my own chain of proxy, but I encounter things that are not clear and s so I need your help to enlighten me. I am using PHP and sockets, so I proceed as follows: ...
0
votes
0answers
336 views

Tunneling over SSH to use YUM

I have two severs connected to a switch. One of these servers has a direct connection to the internet and is to serve as a login node. Internet ---- Neyteri ---- Pandora | ...
0
votes
2answers
272 views

Suggestion on developing a RETS PHP Tunnel

I have partially developed a property website that fetch properties data from a RETS IDX. You may know that RETS server listened to port 6103 over http protocol. My website is deployed on a shared ...
2
votes
0answers
1k views

HTTP Tunnel Servlet (Java)

I am trying to write an HTTP tunnel as we want to be able to connect to a remote machine through our web application. While I am aware of the security risks involved, it's something we would like to ...
0
votes
1answer
519 views

How to ssh over http proxy in Python?

I am adapting a Python script to be OS independent and run on Windows. I have changed its ssh system calls to calls to paramiko functions. I am stuck with the issue of http proxy authentication. In ...
0
votes
1answer
550 views

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 ...
0
votes
2answers
645 views

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 ...
0
votes
0answers
230 views

Socket program blocked by firewall

I have a .NET server that uses socket connection to connect to a XMLSocket on my Flash game. It works great except for people trying to play on schools and workplaces using routers with strict ...
1
vote
0answers
407 views

soapUI as Http tunnel to record iOS (iPhone/iPad) client-server discussions

I am trying to use soapUI as Http tunnel (https target) to record iOS client-server discussions, and then use it for service mocking to test my client which is an iOS app (iPhone and iPad) using the ...
0
votes
2answers
282 views

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, ...
2
votes
2answers
253 views

Can client JavaScript use its own HTTP proxy?

My server, server.example.com, isn't accessible from the Internet. However, there's an accessible HTTP proxy, proxy.example.com, that can talk to the server. If users configure their browser to go ...
4
votes
1answer
531 views

HTTP tunneling (of RTP) for cameras

My company is developing a system that interfaces with several network cameras. The way we stream video from the cameras is over HTTP (mainly because of camera limitations combined with the fact that ...
1
vote
1answer
388 views

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 ...
2
votes
2answers
434 views

How to do proxy tunnelling in java signed applet

how to make persistent connections behind proxy in an applet?** is Using URLConnection will do all the job? I know what i am asking is very general but i am desperate for any ideas. Acording to ...
3
votes
2answers
4k views

Can I use http tunnel to ping or traceroute through a proxy with firewall?

I don't know if there is a way to ping a target outside my LAN proxy which accepts only Http requests through a squid proxy... I read somewhere that one way to deal with such problem is to use a http ...
0
votes
3answers
626 views

Is there an Java library for sending binary data over HTTP, HTTP Tunneling?

I would like to send quite large chunks of data in a binary format over HTTP, also called HTTP Tunneling. I would like to use this technique using Java for a few Java Swing applications and maybe an ...
2
votes
1answer
267 views

getting started with http tunneling

I will soon start work on software which runs on different machines and communicates over the network. I'd like the communication to happen using HTTP tunneling, so no firewall ports need to be ...
1
vote
1answer
2k views

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