Fixed issue with password parsing.
When parsing control.conf or password file, a newline character is picked up causing Authentication Errors.
This commit is contained in:
parent
1eb6d36705
commit
288fb921f0
|
@ -56,7 +56,9 @@ def send_tor_signal(signal: Signal) -> bool:
|
|||
# Scan for the last line of the file.
|
||||
for line in conf:
|
||||
pass
|
||||
secret = line.strip('\n')
|
||||
secret = line
|
||||
if ( '\n' in line ):
|
||||
secret = line.strip('\n')
|
||||
authenticate_password(c, password=secret)
|
||||
else:
|
||||
cookie_path = '/var/lib/tor/control_auth_cookie'
|
||||
|
|
Loading…
Reference in New Issue
Block a user