OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
keyring
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
489 bytes
01/07/2018 08:43:04 PM
rw-r--r--
📄
__main__.py
70 bytes
01/07/2018 08:43:04 PM
rw-r--r--
📁
__pycache__
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
backend.py
5.29 KB
01/07/2018 08:43:04 PM
rw-r--r--
📁
backends
-
05/09/2024 06:58:01 AM
rwxr-xr-x
📄
cli.py
3.56 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
core.py
3.9 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
credentials.py
1.33 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
devpi_client.py
199 bytes
01/07/2018 08:43:04 PM
rw-r--r--
📄
errors.py
1.25 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
getpassbackend.py
312 bytes
01/07/2018 08:43:04 PM
rw-r--r--
📄
http.py
1.23 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
py27compat.py
1.04 KB
01/07/2018 08:43:04 PM
rw-r--r--
📄
py33compat.py
660 bytes
01/07/2018 08:43:04 PM
rw-r--r--
📁
tests
-
05/09/2024 06:58:01 AM
rwxr-xr-x
📁
util
-
05/09/2024 06:58:01 AM
rwxr-xr-x
Editing: cli.py
Close
#!/usr/bin/env python """Simple command line interface to get/set password from a keyring""" from __future__ import print_function import getpass from optparse import OptionParser import sys from . import core from . import backend from . import get_keyring, set_keyring, get_password, set_password, delete_password class CommandLineTool(object): def __init__(self): self.parser = OptionParser( usage="%prog [get|set|del] SERVICE USERNAME") self.parser.add_option("-p", "--keyring-path", dest="keyring_path", default=None, help="Path to the keyring backend") self.parser.add_option("-b", "--keyring-backend", dest="keyring_backend", default=None, help="Name of the keyring backend") self.parser.add_option("--list-backends", action="store_true", help="List keyring backends and exit") def run(self, argv): opts, args = self.parser.parse_args(argv) if opts.list_backends: for k in backend.get_all_keyring(): print(k) return try: kind, service, username = args except ValueError: if len(args) == 0: # Be nice with the user if he just tries to launch the tool self.parser.print_help() return 1 else: self.parser.error("Wrong number of arguments") if opts.keyring_backend is not None: try: if opts.keyring_path: sys.path.insert(0, opts.keyring_path) set_keyring(core.load_keyring(opts.keyring_backend)) except (Exception,): # Tons of things can go wrong here: # ImportError when using "fjkljfljkl" # AttributeError when using "os.path.bar" # TypeError when using "__builtins__.str" # So, we play on the safe side, and catch everything. e = sys.exc_info()[1] self.parser.error("Unable to load specified keyring: %s" % e) if kind == 'get': password = get_password(service, username) if password is None: return 1 self.output_password(password) return 0 elif kind == 'set': password = self.input_password("Password for '%s' in '%s': " % (username, service)) set_password(service, username, password) return 0 elif kind == 'del': password = self.input_password("Deleting password for '%s' in '%s': " % (username, service)) delete_password(service, username) return 0 else: self.parser.error("You can only 'get', 'del' or 'set' a password.") pass def input_password(self, prompt): """Ask for a password to the user. This mostly exists to ease the testing process. """ return getpass.getpass(prompt) def output_password(self, password): """Output the password to the user. This mostly exists to ease the testing process. """ print(password, file=sys.stdout) def main(argv=None): """Main command line interface.""" if argv is None: argv = sys.argv[1:] cli = CommandLineTool() return cli.run(argv) if __name__ == '__main__': sys.exit(main())