WebSphere wsadmin jython - 提示输入密码

时间:2012-11-04 13:03:48

标签: websphere jython wsadmin

我正在寻找一种提示输入密码的方法(即没有输入回显)。 我在WebSphere的7.0.0.19 wsadmin中使用jython。

我已经找到了它 - 似乎可以使用import getpass或import termios(但我得到“没有模块命名...”异常)。

无论如何都要提示输入密码?

谢谢。

2 个答案:

答案 0 :(得分:2)

您可以使用以下代码。它基本上使用Java的console()(如果存在)(注意控制台may not be present),否则使用raw_input()和密码屏蔽逻辑。

# if console is not available (ex: when invoked from a shell script or another java process)
# we need to fall back to use raw_input, but we should mask the password if we use it
import sys, thread, time, threading
from java.lang import String
def getPass(stream=None):
    console = java.lang.System.console()
    if console is None:
        global p_stopMasking
        if not stream:
            stream = sys.stderr
        try:
            p_stopMasking = 0
            threading.Thread(target=_doMasking,args=(stream,)).start()
            password = raw_input()
            p_stopMasking = 1
        except Exception, e:
            p_stopMasking = 1
            print "Error Occured"
            print e
            exit()
    else:
        password = console.readPassword()
    return String.valueOf(password)

def _doMasking(stream):
    while not p_stopMasking:
        stream.write("\010*")
        #stream.write("\n")
        stream.flush()
        time.sleep(0.01)

def populateCredentials():
    global username
    global password
    print 'Enter username:'
    username = raw_input();
    print 'Enter password:'
    password = getPass(sys.stdout);

# start main
print 'start program...'
p_stopMasking= 1
username     = None
password     = None
populateCredentials()
print 'username is : ' + username
print 'password is  : ' + password

答案 1 :(得分:1)

以下内容对我也有用:

raw_input("")
myPass = raw_input("Please enter a password: ")

这并不完美,因为它不会掩盖密码,但确实有效。出于某种原因,如果您未指定第一个“raw_input”调用,则脚本将不会阻止第二个调用。