Compare commits

...

13 Commits

Author SHA1 Message Date
AJ ONeal
afb0eab0a3 v1.0.5 2018-04-18 20:28:49 -06:00
AJ ONeal
b35b16d403 merge https://github.com/Daplie/authenticator-cli/pull/2 2018-04-18 20:27:28 -06:00
AJ ONeal
f7532d7f8c update urls 2018-04-18 20:23:27 -06:00
AJ ONeal
dfb35b9810 rebrand 2018-04-18 20:19:48 -06:00
24de3b0ec8 Update 'README.md' 2017-11-20 16:38:50 +00:00
AJ ONeal
c8283c3bec update urls 2017-09-22 16:53:25 -06:00
AJ ONeal
522571b367 auto-update banner 2016-12-30 02:38:05 -07:00
AJ ONeal
9a7f82b654 auto-update ad 2016-12-30 02:21:23 -07:00
AJ ONeal
9b1ee7a26b Update README.md 2016-11-25 10:32:45 -07:00
AJ ONeal
52050f5ff0 Taking Back the Internet 2016-11-01 18:37:02 -06:00
AJ ONeal
6b58576169 Update README.md 2016-01-02 01:30:32 -08:00
AJ ONeal
7bcefc7f1b Update README.md 2016-01-02 01:29:22 -08:00
AJ ONeal
45d9368fec Update README.md 2016-01-02 01:27:58 -08:00
2 changed files with 23 additions and 20 deletions

View File

@ -1,13 +1,23 @@
# authenticator-cli # Commandline Authenticator
| Sponsored by [ppl](https://ppl.family)
A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, Facebook Authenticator, TOTP, etc) A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, Facebook Authenticator, TOTP, etc)
```bash
authenticator --generate --issuer "ACME" --account "user@example.com"
Key: ru36 53z3 fmh4 d67u kgeh 7rgj hcbb ypnd
Token: 947464
URL: otpauth://totp/ACME:user@example.com?secret=RU3653Z3FMH4D67UKGEH7RGJHCBBYPND&issuer=ACME&algorithm=SHA1&digits=6&period=30
```
## Install ## Install
**Install node.js 4.0+**: **Install node.js 4.0+**:
```bash ```bash
curl -L https://bit.ly/iojs-min | bash curl -L bit.ly/iojs-min | bash
``` ```
**Install authenticator**: **Install authenticator**:
@ -17,24 +27,16 @@ npm install --global authenticator-cli
## Usage ## Usage
``` ```bash
authenticator --help authenticator --help
``` ```
```
authenticator --generate --issuer "ACME" --account "user@example.com"
Key: ru36 53z3 fmh4 d67u kgeh 7rgj hcbb ypnd
Token: 947464
URL: otpauth://totp/ACME:user@example.com?secret=RU3653Z3FMH4D67UKGEH7RGJHCBBYPND&issuer=ACME&algorithm=SHA1&digits=6&period=30
```
## Browser & Node Authenticator ## Browser & Node Authenticator
You may also be interested in You may also be interested in
* [Browser Authenticator](https://github.com/Daplie/browser-authenticator) over at <https://github.com/Daplie/browser-authenticator> * [Browser Authenticator](https://git.coolaj86.com/coolaj86/browser-authenticator.js) over at <https://git.coolaj86.com/coolaj86/browser-authenticator.js>
* [Node.js Authenticator](https://github.com/Daplie/node-authenticator) over at <https://github.com/Daplie/node-authenticator> * [Node.js Authenticator](https://git.coolaj86.com/coolaj86/node-authenticator.js) over at <https://git.coolaj86.com/coolaj86/node-authenticator.js>
## Full Usage ## Full Usage

View File

@ -1,15 +1,16 @@
{ {
"name": "authenticator-cli", "name": "authenticator-cli",
"version": "1.0.2", "version": "1.0.5",
"description": "A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, TOTP / 2FA / MFA / OTP, etc)", "description": "A commandline Authenticator App (for Authy, Google Authenticator, Microsoft Authenticator, TOTP / 2FA / MFA / OTP, etc)",
"homepage": "https://git.coolaj86.com/coolaj86/authenticator-cli.js",
"main": "index.js", "main": "index.js",
"bin": { "bin": {
"authenticator": "bin/authenticator.js" "authenticator": "bin/authenticator.js"
}, },
"dependencies": { "dependencies": {
"authenticator": "^1.1.0", "authenticator": "^1.1.0",
"cli": "^0.11.1", "cli": "^1.0.1",
"qrcode-terminal": "^0.10.0" "qrcode-terminal": "^0.12.0"
}, },
"devDependencies": {}, "devDependencies": {},
"scripts": { "scripts": {
@ -17,7 +18,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/Daplie/authenticator-cli.git" "url": "git+https://git.coolaj86.com/coolaj86/authenticator-cli.js.git"
}, },
"keywords": [ "keywords": [
"Authenticator", "Authenticator",
@ -30,6 +31,7 @@
"microsoft", "microsoft",
"facebook", "facebook",
"daplie", "daplie",
"ppl",
"totp", "totp",
"2fa", "2fa",
"mfa", "mfa",
@ -40,7 +42,6 @@
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)", "author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "MPL-2.0", "license": "MPL-2.0",
"bugs": { "bugs": {
"url": "https://github.com/Daplie/authenticator-cli/issues" "url": "https://git.coolaj86.com/coolaj86/authenticator-cli.js/issues"
}, }
"homepage": "https://github.com/Daplie/authenticator-cli#readme"
} }