Host your own Tor hidden service!
A super simple guide to spinning up a Tor hidden service. [tl;dr]
Ubuntu 20.04 LTS was used for the making of this guide.
you can install Tor using the following command
A super simple guide to spinning up a Tor hidden service. [tl;dr]
Ubuntu 20.04 LTS was used for the making of this guide.
you can install Tor using the following command
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| function jurl() { | |
| case `echo $1 | tr '[a-z]' '[A-Z]'` in | |
| "PUT"|"POST") | |
| curl -vs -H "Content-Type: application/json" -X $1 -d "${2}" $3 | python -mjson.tool | |
| ;; | |
| "GET"|"DELETE") | |
| curl -vs -H "Content-Type: application/json" -X $1 $2 | python -mjson.tool | |
| ;; | |
| *) | |
| echo "Error: Please use of the following HTTP methods: GET, POST, PUT, DELETE." |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAuvp4DliG7bRgSKEFywMLcIFefxa9h7ThH13Gp3ZnmjkwedC6KFvqVEYWMK7MO9HXYa8eLS389Cq1tPrUXnC2z9AkvFReGfg+SID+zkY+1vP5j4gJSR6RD9DxCgdT13ncUzgtoC/q76OAVImH7actvNZ9KjLH3gft3tbBMC3Xpiwhjirh+BY+ObJ4QjRK/DWyWUv7pn13wWt1jo+6lfUv4gqSzmthubWI7oUPjTyRqpSuAQf2CFPsV3s51k6JveixaS+tJ/jaCv4usZCyTTLviyh8fLCpVojYEU9S67PLqrWhjWUGuW+B2ietPMEaq5WZFyZvOVXpASeQY9PB3umgUQ== Matt Heitzenroder <mheitzenroder at gmail dot com> |
| make_wrq(Method, RawPath, Headers) -> | |
| {ok, Dispatch} = file:consult(filename:join( | |
| [filename:dirname(code:which(?MODULE)), | |
| "..", "priv", "dispatch.conf"])), | |
| R0 = wrq:create(Method, {1,1}, RawPath, mochiweb_headers:from_list(Headers)), | |
| R1 = wrq:set_peer("127.0.0.1", R0), | |
| {_, _, HostTokens, Port, PathTokens, Bindings, AppRoot, StringPath} = | |
| webmachine_dispatcher:dispatch("127.0.0.1", RawPath, Dispatch), | |
| wrq:load_dispatch_data(Bindings, | |
| HostTokens, |
| /* | |
| As of version 1.1.2, Propane will load and execute the contents of | |
| ~Library/Application Support/Propane/unsupported/caveatPatchor.js | |
| immediately following the execution of its own enhancer.js file. | |
| You can use this mechanism to add your own customizations to Campfire | |
| in Propane. | |
| Below you'll find two customization examples. |
| #!/usr/bin/env python | |
| from optparse import OptionParser | |
| from xml.dom.minidom import parse | |
| import os | |
| import sqlite3 | |
| datatypeMap = { | |
| 'integer': 'INT', | |
| 'datetime': 'DATETIME', |