Project

tortard

0.0
No commit activity in last 3 years
No release in over 3 years
Map SOCKS address:port to real:port.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.0.0.beta.4
 Project Readme

tortard - tor for tards

Just a simple app to map SOCKS address and port to a local address and port that doesn't require SOCKS.

# this will map port 80 of silkroadvb5piz3r.onion to port 9433 on localhost
host 'silkroadvb5piz3r.onion' do
	map 80, 'localhost:9433'
end

# you can achieve the same with
map 'silkroadvb5piz3r.onion:80', 'localhost:9433'

# if you want you can use SSL
ssl :internal do
  # maps here will use SSL internally, which means you will be able to connect
  # to the local port without SSL
end

ssl :external do
  # this will require SSL to connect but won't use it internally
end

ssl :both do
  # this will use SSL on both ends
end