mirror of
https://github.com/rwinkhart/sshyp-labs.git
synced 2026-08-28 04:46:48 -04:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da6b1658a4 | ||
|
|
5df741726f | ||
|
|
ea020c4bf1 | ||
|
|
3568601520 | ||
|
|
e9ee114452 | ||
|
|
8c1a3c340c | ||
|
|
0ad86a1040 | ||
|
|
931d7a0494 | ||
|
|
f0eb398f07 |
@@ -1,16 +1,21 @@
|
||||
# sshyp-labs
|
||||
Experimental extensions for the sshyp password manager.
|
||||
|
||||
sshyp-labs is currently the home of sshyp-mfa, and soon to be the home of password-pasture (sshyp-gui).
|
||||
sshyp-labs is currently the home of sshyp-mfa and password-pasture (sshyp-gui).
|
||||
|
||||
# Available Extensions
|
||||
sshyp-mfa - [installation and usage instructions](https://github.com/rwinkhart/sshyp-labs/wiki/sshyp-mfa)
|
||||
|
||||
sshyp-mfa is a unique approach to generating multi-factor authentication keys. Upon running `sshyp-mfa <target entry>`,
|
||||
sshyp-mfa is a unique approach to generating multi-factor authentication keys. Upon running `sshyp </entry name> copy -m`,
|
||||
an MFA key will be generated and copied to your clipboard. sshyp-mfa will continue to run in the background and copy a
|
||||
new key to your clipboard every time the actively copied one expires. Never worry about a TOTP timer expiring, again!
|
||||
new key to your clipboard every time the actively copied one expires. Never worry about a TOTP timer expiring again!
|
||||
At any time, sshyp-mfa can be closed with ctrl+c to stop this process.
|
||||
|
||||
password-pasture - [installation and usage instructions](https://github.com/rwinkhart/sshyp-labs/wiki/password-pasture)
|
||||
|
||||
password-pasture is an incredibly experimental GTK4 GUI interface for sshyp. It is currently not in a usable state
|
||||
and has not been updated since sshyp v1.1.X. Development is set to resume after sshyp is more feature-complete.
|
||||
|
||||
# Acknowledgements
|
||||
sshyp-mfa relies on [ValvePython/steam](https://github.com/ValvePython/steam) for Steam support.
|
||||
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
.TH sshyp-mfa 1 "12 July 2022" "rolling" "sshyp-mfa man page"
|
||||
.TH sshyp-mfa 1 "04 March 2023" "v1.4.0.1" "sshyp-mfa man page"
|
||||
.SH NAME
|
||||
sshyp-mfa \- An MFA (TOTP/Steam) key generator for the sshyp password manager.
|
||||
.SH SYNOPSIS
|
||||
sshyp-mfa [/<entry name>]
|
||||
Extension Usage: sshyp </entry name> copy -m
|
||||
|
||||
Direct Usage: sshyp-mfa </entry name>
|
||||
.SH DESCRIPTION
|
||||
sshyp-mfa is an extension for the sshyp password manager that reads MFA data from sshyp entries and generates generic TOTP and Steam keys.
|
||||
.SH EXAMPLES
|
||||
Viewing the entry database:
|
||||
sshyp-mfa
|
||||
|
||||
Generating and copying an MFA key for an existing entry saved as ~/.local/share/sshyp-mfa/development/github.gpg
|
||||
sshyp /development/github copy -m
|
||||
sshyp-mfa /development/github
|
||||
|
||||
.SH SETUP
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
[config]
|
||||
input = copy -m
|
||||
output = sshyp-mfa
|
||||
+10
-14
@@ -4,7 +4,7 @@ from base64 import b32decode
|
||||
from os import environ, listdir, path, uname
|
||||
from pathlib import Path
|
||||
from sshync import get_profile
|
||||
from sshyp import decrypt, entry_list_gen, shm_gen, whitelist_verify
|
||||
from sshyp import decrypt, shm_gen, whitelist_verify
|
||||
from subprocess import PIPE, Popen, run
|
||||
from sys import argv, exit as s_exit
|
||||
from time import sleep, strftime, time
|
||||
@@ -21,16 +21,16 @@ def totp(_secret, _algo, _digits, _period): # uses provided information to gene
|
||||
return str(_binary)[-_digits:].zfill(_digits)
|
||||
|
||||
|
||||
def mfa_read_shortcut(): # reads and extracts MFA info from the user-specified sshyp entry
|
||||
def mfa_read_shortcut(): # extracts MFA info from the user-specified sshyp entry
|
||||
from shutil import rmtree
|
||||
if not Path(f"{directory}{argument}.gpg").exists():
|
||||
print(f"\n\u001b[38;5;9merror: entry ({argument}) does not exist\u001b[0m\n")
|
||||
if not Path(f"{directory}{arguments[0]}.gpg").exists():
|
||||
print(f"\n\u001b[38;5;9merror: entry ({arguments[0]}) does not exist\u001b[0m\n")
|
||||
s_exit(1)
|
||||
_shm_folder, _shm_entry = shm_gen()
|
||||
if quick_unlock_enabled == 'y':
|
||||
decrypt(directory + argument, _shm_folder, _shm_entry, whitelist_verify(port, username_ssh, ip, device_id))
|
||||
decrypt(directory + arguments[0], _shm_folder, _shm_entry, whitelist_verify(port, username_ssh, ip, device_id))
|
||||
else:
|
||||
decrypt(directory + argument, _shm_folder, _shm_entry, False)
|
||||
decrypt(directory + arguments[0], _shm_folder, _shm_entry, False)
|
||||
try:
|
||||
_mfa_data = open(f"{path.expanduser('~/.config/sshyp/tmp/')}{_shm_folder}/{_shm_entry}", 'r').readlines()
|
||||
_type = _mfa_data[4].split('otpauth://')[1].split('/')[0]
|
||||
@@ -41,16 +41,16 @@ def mfa_read_shortcut(): # reads and extracts MFA info from the user-specified
|
||||
rmtree(f"{path.expanduser('~/.config/sshyp/tmp/')}{_shm_folder}")
|
||||
return _type, _secret, _algo, _digits, _period
|
||||
except IndexError:
|
||||
print(f"\n\u001b[38;5;9merror: entry ({argument}) does not contain valid mfa data\u001b[0m\n")
|
||||
print(f"\n\u001b[38;5;9merror: entry ({arguments[0]}) does not contain valid mfa data\u001b[0m\n")
|
||||
rmtree(f"{path.expanduser('~/.config/sshyp/tmp/')}{_shm_folder}")
|
||||
s_exit(1)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
# argument fetcher
|
||||
argument_list = argv
|
||||
if not len(argv) == 1 and not argv[1].strip().startswith('/'):
|
||||
print(f"\n\u001b[38;5;9merror: invalid argument - run 'man sshyp-mfa' for usage information\u001b[0m\n")
|
||||
arguments = argv[1:]
|
||||
if len(arguments) < 1 or not arguments[0].startswith('/'):
|
||||
print("\nsshyp-mfa extension usage: sshyp </entry name> copy -m\n\nrun 'man sshyp-mfa' for more information\n")
|
||||
s_exit(1)
|
||||
|
||||
# user data fetcher
|
||||
@@ -64,10 +64,6 @@ if __name__ == '__main__':
|
||||
|
||||
# main process: runs functions to generate MFA key, then continuously copies up-to-date MFA key to clipboard
|
||||
try:
|
||||
if len(argument_list) == 1:
|
||||
entry_list_gen()
|
||||
argument_list.append(input('entry to read: '))
|
||||
argument = ' '.join(argument_list[1:]).replace('/', '', 1)
|
||||
mfa_data, copied = mfa_read_shortcut(), None
|
||||
print('\nmfa key copied to clipboard\n\nuntil this process is closed, your clipboard will be automatically '
|
||||
'updated with the newest mfa key')
|
||||
|
||||
@@ -52,7 +52,7 @@ _create_apkbuild() {
|
||||
echo "# Maintainer: Randall Winkhart <idgr@tutanota.com>
|
||||
pkgname=sshyp-mfa
|
||||
pkgver="$version"
|
||||
pkgrel="$revision"
|
||||
pkgrel="$((revision-1))"
|
||||
pkgdesc='An MFA (TOTP/Steam) key generator for the sshyp password manager'
|
||||
options=!check
|
||||
url='https://github.com/rwinkhart/sshyp-labs'
|
||||
@@ -185,6 +185,7 @@ cp -r %{_sourcedir}/usr %{buildroot}
|
||||
%files
|
||||
/usr/bin/sshyp-mfa
|
||||
/usr/lib/sshyp/sshyp-mfa.py
|
||||
/usr/lib/sshyp/extensions/sshyp-mfa
|
||||
%license /usr/share/licenses/sshyp-mfa/license
|
||||
%doc /usr/share/man/man1/sshyp-mfa.1.gz
|
||||
" > ~/rpmbuild/SPECS/sshyp-mfa.spec
|
||||
@@ -215,6 +216,7 @@ prefix: /
|
||||
" > output/freebsdtemp/+MANIFEST
|
||||
echo "/usr/bin/sshyp-mfa
|
||||
/usr/lib/sshyp/sshyp-mfa.py
|
||||
/usr/lib/sshyp/extensions/sshyp-mfa
|
||||
/usr/share/licenses/sshyp-mfa/license
|
||||
/usr/share/man/man1/sshyp-mfa.1.gz
|
||||
" > output/freebsdtemp/plist
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
sshyp-mfa is a FOSS extension for the sshyp password manager.
|
||||
Copyright (C) 2022 Randall Winkhart idgr@tutanota.com
|
||||
Copyright (C) 2022-2023 Randall Winkhart idgr@tutanota.com
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of version 3 (only) of the GNU General Public License
|
||||
|
||||
Reference in New Issue
Block a user