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
27224924
Verified
Commit
27224924
authored
9 months ago
by
Jakob Moser
Browse files
Options
Downloads
Patches
Plain Diff
Add short README, enhance .gitignore
parent
dcbf3dce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
README.md
+38
-0
38 additions, 0 deletions
README.md
with
39 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
27224924
__pycache__
venv
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
38
−
0
View file @
27224924
# 2FA
This is only a quick demo on how you could possible generate a second factor in form of a one-time-password using Python.
If you want to manage all your second factors in one place, this tool is not for you.
## Installation
```
bash
python3
-m
venv venv
source
venv/bin/activate
pip
install
-r
requirements.txt
```
## Enrollment
Launch a Python shell, e.g., using:
```
bash
source
venv/bin/activate
python3
```
Within the shell, type:
```
python
from
main
import
enroll_token
enroll_token
(
"
otpauth://totp/...
"
)
# replace this with the URL you've gotten from the 2FA enrollment system
```
This will only store the token locally in the secret storage, without any validation whatsoever.
## Get token
```
bash
source
venv/bin/activate
./main.py
```
\ No newline at end of file
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