Revert commit fd9214b334
This commit is contained in:
parent
6d53546f6e
commit
f0b0a31baf
1 changed files with 261 additions and 267 deletions
|
@ -65,11 +65,8 @@ class MuMgr(object):
|
|||
obfs = user.get('obfs', '')
|
||||
protocol = protocol.replace("_compatible", "")
|
||||
obfs = obfs.replace("_compatible", "")
|
||||
link = "%s:%s:%s:%s:%s:%s" % (self.server_addr, user['port'], protocol, user['method'], obfs,
|
||||
common.to_str(base64.urlsafe_b64encode(common.to_bytes(user['passwd']))).replace(
|
||||
"=", ""))
|
||||
return "ssr://" + (
|
||||
encode and common.to_str(base64.urlsafe_b64encode(common.to_bytes(link))).replace("=", "") or link)
|
||||
link = "%s:%s:%s:%s:%s:%s" % (self.server_addr, user['port'], protocol, user['method'], obfs, common.to_str(base64.urlsafe_b64encode(common.to_bytes(user['passwd']))).replace("=", ""))
|
||||
return "ssr://" + (encode and common.to_str(base64.urlsafe_b64encode(common.to_bytes(link))).replace("=", "") or link)
|
||||
|
||||
def userinfo(self, user):
|
||||
ret = ""
|
||||
|
@ -97,9 +94,7 @@ class MuMgr(object):
|
|||
return ret
|
||||
|
||||
def rand_pass(self):
|
||||
return ''.join(
|
||||
[random.choice('''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~-_=+(){}[]^&%$@''') for i
|
||||
in range(8)])
|
||||
return ''.join([random.choice('''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~-_=+(){}[]^&%$@''') for i in range(8)])
|
||||
|
||||
def add(self, user):
|
||||
up = {'enable': 1, 'u': 0, 'd': 0, 'method': "aes-128-cfb",
|
||||
|
@ -324,6 +319,5 @@ def main():
|
|||
elif action is None:
|
||||
print_server_help()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
|
Loading…
Add table
Reference in a new issue