mirror of
https://github.com/os-mnemo/pan-globalprotect-okta
synced 2026-07-31 07:44:38 +02:00
Mask password input.
This commit is contained in:
+2
-2
@@ -24,7 +24,7 @@
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
"""
|
"""
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import io, os, sys, re, json, base64
|
import io, os, sys, re, json, base64, getpass
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
@@ -98,7 +98,7 @@ def load_conf(cf):
|
|||||||
if 'username' not in conf:
|
if 'username' not in conf:
|
||||||
conf['username'] = raw_input('username: ').strip()
|
conf['username'] = raw_input('username: ').strip()
|
||||||
if 'password' not in conf:
|
if 'password' not in conf:
|
||||||
conf['password'] = raw_input('password: ').strip()
|
conf['password'] = getpass.getpass('password: ').strip()
|
||||||
for k in keys:
|
for k in keys:
|
||||||
if k not in conf:
|
if k not in conf:
|
||||||
err('missing configuration key: {0}'.format(k))
|
err('missing configuration key: {0}'.format(k))
|
||||||
|
|||||||
Reference in New Issue
Block a user