From 4f214819b7b81aba3c5526c77795ce26889f05cd Mon Sep 17 00:00:00 2001 From: n90p <> Date: Tue, 26 Jan 2021 22:26:40 +0000 Subject: [PATCH] Generate correct password --- oprahProxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oprahProxy.py b/oprahProxy.py index e0dfa01..9f1a00f 100755 --- a/oprahProxy.py +++ b/oprahProxy.py @@ -258,7 +258,7 @@ def post(self, url, data): def register_subscriber(self): logging.debug('Call register_subscriber') email = '%s@%s.surfeasy.vpn' % (uuid.uuid4(), self.client_type) - password = uuid.uuid4() + password = email password_hash = hashlib.sha1( str(password).encode('ascii')).hexdigest().upper() logging.debug('Your SurfEasy email: %s' % email)