Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
2fa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Ducati
2fa
Commits
f60f4697
Verified
Commit
f60f4697
authored
9 months ago
by
Sören Ducati
Browse files
Options
Downloads
Patches
Plain Diff
feat: add tokenmanagement by cli
parent
14e59eea
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.py
+58
-3
58 additions, 3 deletions
main.py
with
58 additions
and
3 deletions
main.py
+
58
−
3
View file @
f60f4697
#!/usr/bin/env python3
import
pyotp
import
argparse
import
keyring
import
pyotp
def
delete_token
():
if
keyring
.
get_password
(
"
unihd
"
,
"
2fa
"
)
is
None
:
return
keyring
.
delete_password
(
"
unihd
"
,
"
2fa
"
)
def
enroll_token
(
token_uri
:
str
)
->
None
:
keyring
.
set_password
(
"
unihd
"
,
"
2fa
"
,
token_uri
)
def
enroll_token_interactive
():
mfa_uri
=
None
print
(
"
Enrolling secret.
"
)
while
mfa_uri
is
None
or
not
mfa_uri
:
mfa_uri
=
input
(
"
Enter/Paste MFA URI:
"
)
if
mfa_uri
.
startswith
(
"
otpauth://
"
):
enroll_token
(
mfa_uri
)
else
:
print
(
"
The given string has to start with otpauth://
"
)
def
get_otp
()
->
str
:
mfa_uri
=
keyring
.
get_password
(
"
unihd
"
,
"
2fa
"
)
otp
=
pyotp
.
parse_uri
(
mfa_uri
)
return
otp
.
now
()
if
mfa_uri
is
None
:
print
(
"
No token enrolled, run again with -e or --enroll
"
)
exit
(
1
)
else
:
otp
=
pyotp
.
parse_uri
(
mfa_uri
)
return
otp
.
now
()
if
__name__
==
"
__main__
"
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"
-d
"
,
"
--delete
"
,
help
=
"
Delete the stored otpsecret from keyring
"
,
default
=
False
,
action
=
"
store_true
"
,
)
parser
.
add_argument
(
"
-e
"
,
"
--enroll
"
,
help
=
"
Enrolls a given token to the keyring
"
,
default
=
None
,
const
=
"
--
"
,
nargs
=
"
?
"
,
)
args
=
parser
.
parse_args
()
if
args
.
delete
:
delete_token
()
exit
()
if
args
.
enroll
:
if
args
.
enroll
==
"
--
"
:
enroll_token_interactive
()
elif
args
.
enroll
.
startswith
(
"
otpauth://
"
):
enroll_token
(
args
.
enroll
)
else
:
print
(
"
The given string has to start with otpauth://
"
)
exit
(
1
)
print
(
get_otp
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment