Cookie authentication simply means that your credential is the content of a
file in Tor's DataDirectory
. You can learn information about Tor's method
of authentication (including the cookie file's location) by calling
PROTOCOLINFO
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
LOCAL_HOST="localhost" | |
LOCAL_PORT="" | |
GATEWAY_USER="" | |
GATEWAY_HOST="" | |
GATEWAY_PORT=22 | |
TARGET_HOST="" |