mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-25 01:13:37 +01:00
29 lines
707 B
Python
29 lines
707 B
Python
import sys, os, re, subprocess
|
|
|
|
def askpass(prompt):
|
|
prompt = prompt.replace('"', "'")
|
|
|
|
if 'yes/no' in prompt:
|
|
return "yes"
|
|
|
|
script="""
|
|
tell application "Finder"
|
|
activate
|
|
display dialog "%s" \
|
|
with title "Sshuttle SSH Connection" \
|
|
default answer "" \
|
|
with icon caution \
|
|
with hidden answer
|
|
end tell
|
|
""" % prompt
|
|
|
|
p = subprocess.Popen(['osascript', '-e', script], stdout=subprocess.PIPE)
|
|
out = p.stdout.read()
|
|
rv = p.wait()
|
|
if rv:
|
|
return None
|
|
g = re.match("text returned:(.*), button returned:.*", out)
|
|
if not g:
|
|
return None
|
|
return g.group(1)
|