SOCKS4/5?

Bringing the internet highway into your project? Building FTP, HTTP, email, chat or other client solutions?

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
trenatos
Posts: 189
Joined: Wed Jul 03, 2013 6:46 am
Location: Virginia, USA
Contact:

SOCKS4/5?

Post by trenatos » Sun Dec 29, 2013 10:21 pm

I have an idea for an application that would be run over the Tor Onion network, does anyone know how I would go about networking through SOCKS4/5?
The traffic will be simple HTTP Post/Get but I don't know how I would go about going through the local Tor SOCKS4/5 proxy
Marcus

RRobert
Posts: 151
Joined: Sat Feb 28, 2009 8:20 pm

Re: SOCKS4/5?

Post by RRobert » Sat Jan 04, 2014 2:48 pm

trenatos wrote:I have an idea for an application that would be run over the Tor Onion network, does anyone know how I would go about networking through SOCKS4/5?
The traffic will be simple HTTP Post/Get but I don't know how I would go about going through the local Tor SOCKS4/5 proxy
You can use curl

Code: Select all

put shell("curl -s --socks5-hostname 127.0.0.1:9050 http://checkip.dyndns.org") 
or you can talk directly to Tor by Port 9050 via the Socks protocol.

* How Socks 5 Works
* Socket Communications in LiveCode
* How to communicate with other applications using sockets

Robert

trenatos
Posts: 189
Joined: Wed Jul 03, 2013 6:46 am
Location: Virginia, USA
Contact:

Re: SOCKS4/5?

Post by trenatos » Sun Feb 02, 2014 7:58 am

Sorry about the late reply, the forums didn't let me know there was a new reply.

Thanks Robert, I think this will let me pick up the project again :)
Marcus

DarScott
Posts: 227
Joined: Fri Jul 28, 2006 12:23 am
Location: Albuquerque
Contact:

Re: SOCKS4/5?

Post by DarScott » Thu May 01, 2014 8:50 pm

Perhaps the new 'secure socket' will help with SOCKS implementations that need to connect to SSL on the outside.

Post Reply

Return to “Internet”