{"id":16926186,"url":"https://github.com/pedroborges/kirby-authenticator","last_synced_at":"2025-10-10T14:13:45.639Z","repository":{"id":127635349,"uuid":"138232240","full_name":"pedroborges/kirby-authenticator","owner":"pedroborges","description":"⬢ Improved authentication system with 2-step verification for Kirby CMS.","archived":false,"fork":false,"pushed_at":"2018-12-14T06:24:18.000Z","size":345,"stargazers_count":22,"open_issues_count":4,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-04T07:51:01.636Z","etag":null,"topics":["2-factor-authentication","2-step-verification","2fa","authentication","kirby-cms","kirby-plugin","login","security"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pedroborges.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-06-21T23:32:00.000Z","updated_at":"2025-05-05T08:28:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"9f981510-e47f-4408-8dda-ae740c6c4257","html_url":"https://github.com/pedroborges/kirby-authenticator","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pedroborges/kirby-authenticator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedroborges%2Fkirby-authenticator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedroborges%2Fkirby-authenticator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedroborges%2Fkirby-authenticator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedroborges%2Fkirby-authenticator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pedroborges","download_url":"https://codeload.github.com/pedroborges/kirby-authenticator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pedroborges%2Fkirby-authenticator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004178,"owners_count":26083688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["2-factor-authentication","2-step-verification","2fa","authentication","kirby-cms","kirby-plugin","login","security"],"created_at":"2024-10-13T20:29:15.779Z","updated_at":"2025-10-10T14:13:45.633Z","avatar_url":"https://github.com/pedroborges.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kirby Authenticator (Beta) [![Release](https://img.shields.io/github/release/pedroborges/kirby-authenticator.svg)](https://github.com/pedroborges/kirby-authenticator/releases) [![Issues](https://img.shields.io/github/issues/pedroborges/kirby-authenticator.svg)](https://github.com/pedroborges/kirby-authenticator/issues)\n\nImproved authentication system with 2-step verification for Kirby CMS.\n\n[![Click to watch a short clip of the Authenticator plugin in action](https://user-images.githubusercontent.com/688309/43308430-f6120d94-9157-11e8-8718-aa533128cef1.png)](https://jumpshare.com/v/gGVqJuIYQ3JV7Hqj99GA)\n\n## Main features\n- 2-step verification\n- Password reset (soon)\n- Password-less login via email (soon)\n- Custom login layout (soon)\n- Your turn...\n\n## Basic Usage\nOnce installed, Authenticator will automatically register the necessary users blueprint to activate the plugin. If your project already have a [default users blueprint](https://getkirby.com/docs/panel/users#custom-user-form-fields), you will need to add the field below to `site/blueprints/users/default.yml`:\n\n```yaml\nfields:\n  authenticator:\n    type: authenticator\n```\n\nThen you can login, go to `https://your-site.com/panel/users/[username]/edit`, and scroll to the **2-step verification** section. From there you can turn 2-step verification on/off by clicking on the button on the right and following the instructions.\n\nThis plugin is still in _beta_ and there are [some features](#roadmap) that I'd like to complete. That doesn't mean it's buggy, all implemented features should work well. It just doesn't have all the features I have planned for it yet. I'd appreciate if you can test it and give feedback.\n\n## Installation\n\n### Requirements\n- Kirby 2.5+\n- PHP 7.1+\n\n### Download\n[Download the files](https://github.com/pedroborges/kirby-authenticator/archive/master.zip) and place them inside `site/plugins/authenticator`.\n\n### Kirby CLI\nKirby's [command line interface](https://github.com/getkirby/cli) makes installing the Authenticator plugin a breeze:\n\n    $ kirby plugin:install pedroborges/kirby-authenticator\n\nUpdating couldn't be any easier, simply run:\n\n    $ kirby plugin:update pedroborges/kirby-authenticator\n\n### Git Submodule\nYou can add the Authenticator plugin as a Git submodule.\n\n    $ cd your/project/root\n    $ git submodule add https://github.com/pedroborges/kirby-authenticator.git site/plugins/authenticator\n    $ git submodule update --init --recursive\n    $ git commit -am \"Add Authenticator plugin\"\n\nUpdating is as easy as running a few commands.\n\n    $ cd your/project/root\n    $ git submodule foreach git checkout master\n    $ git submodule foreach git pull\n    $ git commit -am \"Update submodules\"\n    $ git submodule update --init --recursive\n\n## Roadmap\n- [X] Create backup codes when activating 2-step verification\n- [ ] Password reset\n- [ ] Password-less login via email\n- [ ] Separate login and 2-step verification in two screens\n- [ ] Request verification code to change password\n- [ ] Option to copy secret if QR code can't be scanned\n- [ ] Allow admin to turn 2-step verification on/off for users\n- [ ] Login with email/password instead of username/password\n- [ ] Custom login layout\n\n## Change Log\nAll notable changes to this project will be documented at: \u003chttps://github.com/pedroborges/kirby-authenticator/blob/master/changelog.md\u003e\n\n## License\nAuthenticator plugin is open-sourced software licensed under the [MIT license](http://www.opensource.org/licenses/mit-license.php).\n\nCopyright © 2018 Pedro Borges \u003coi@pedroborg.es\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedroborges%2Fkirby-authenticator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpedroborges%2Fkirby-authenticator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedroborges%2Fkirby-authenticator/lists"}