Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Functions | |
def | unix_getpass |
def | win_getpass |
def | default_getpass |
def | getuser |
Variables | |
list | __all__ = ["getpass","getuser"] |
getpass = default_getpass | |
Utilities to get a password and/or the current user name. getpass(prompt) - prompt for a password, with echo turned off getuser() - get the user name from the environment or password database On Windows, the msvcrt module will be used. On the Mac EasyDialogs.AskPassword is used, if available.
def getpass.default_getpass | ( | prompt = 'Password: ' ) |
def getpass.getuser | ( | ) |
Get the username from the environment or password database. First try various environment variables, then the password database. This works on Windows as long as USERNAME is set.
Definition at line 85 of file getpass.py.
def getpass.unix_getpass | ( | prompt = 'Password: ' ) |
Prompt for a password, with echo turned off. Restore terminal settings at end.
Definition at line 18 of file getpass.py.
References default_getpass().
def getpass.win_getpass | ( | prompt = 'Password: ' ) |
Prompt for password with echo off, using Windows getch().
Definition at line 43 of file getpass.py.
References default_getpass().
list __all__ = ["getpass","getuser"] |
Definition at line 16 of file getpass.py.
getpass = default_getpass |
Definition at line 114 of file getpass.py.