{"id":22151032,"url":"https://github.com/justcoded/magento-pci-auth","last_synced_at":"2025-10-10T17:05:36.045Z","repository":{"id":89292008,"uuid":"126849590","full_name":"justcoded/magento-pci-auth","owner":"justcoded","description":"This module helps make Magento 1.x installation more PCI-compliant by controlling user password behavior.","archived":false,"fork":false,"pushed_at":"2018-04-05T08:13:00.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T17:05:29.263Z","etag":null,"topics":["magento","php"],"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/justcoded.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}},"created_at":"2018-03-26T15:26:56.000Z","updated_at":"2018-06-02T22:11:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"80c49f90-0d46-44c5-a698-d50bcae3454d","html_url":"https://github.com/justcoded/magento-pci-auth","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/justcoded/magento-pci-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justcoded%2Fmagento-pci-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justcoded%2Fmagento-pci-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justcoded%2Fmagento-pci-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justcoded%2Fmagento-pci-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justcoded","download_url":"https://codeload.github.com/justcoded/magento-pci-auth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justcoded%2Fmagento-pci-auth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004815,"owners_count":26083783,"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":["magento","php"],"created_at":"2024-12-02T00:29:50.213Z","updated_at":"2025-10-10T17:05:36.022Z","avatar_url":"https://github.com/justcoded.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Purpose\n\nPCI compliance has recently become a number one priority in the world of ecommerce. Although Magento 2 is already up and more PCI compliant, still there are many businesses who run Magento 1.x which is known to have certain security breaches and issues. This module helps make Magento 1.x installation more PCI-compliant by controlling user password behavior.\n\n## Description\n\nPCI Authorization module does the following:\n\n- Sets the maximum invalid login attempts after which an account will be blocked for a set period of time\n- Sets customer login session expiration after a defined time period\n- Enforces customers to create a unique password during the password change process\n- Allows to set a minimum customer password length\n\n## Installation\n\nThis module is composer ready so you can install it via command (do not forget to add this repo to the composer.json before):\n\n```sh\ncomposer require justcoded/pciauth:*\n```\n\n## Usage\n\n### General settings\n\nThe module is configured in `System → Configuration → JustCoded → PCI Auth an`d has the following settings:\n\n- Enabled/Disabled\n- Minimum password length\n- Number of unsuccessful login attempts for customer lock\n- Time to reset the failed login attempt counter\n- Lockout effective period\n- Accounts will be deactivated if not active for more than [minutes]\n\n![alt tag](https://i.imgur.com/8mUVudq.png)\n\n### Customer account settings\n\nPCI authorization settings are also managed per customer and included in Account Information tab under each customer account settings.\n\n![alt tag](https://i.imgur.com/4W2BXQx.png)\n\n## Compatibility\n\nFully tested with Magento 1.9.3\n\n## Potential Risks\n\nPlease note that this module rewrites a customer model:\n\n```\nxml\n\u003ccustomer\u003e\n    \u003crewrite\u003e\n        \u003ccustomer\u003eJustCoded_PCIAuth_Model_Customer_Customer\u003c/customer\u003e\n    \u003c/rewrite\u003e\n\u003c/customer\u003e\n```\n\nThus it can be incompatible with some other modules, and you will need to fix this conflict by yourself (here's how [https://stackoverflow.com/a/14815808](https://stackoverflow.com/a/14815808))\n\n## Contact\n\nFollow our blog at [http://justcoded.com/blog](http://justcoded.com/blog)\n\n### License\n\nThe MIT License (MIT)\n\nCopyright © 2017 JustCoded\n\nPermission is hereby granted free of charge to any person obtaining a copy of this software and associated documentation files (the \"Software\") to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcoded%2Fmagento-pci-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustcoded%2Fmagento-pci-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcoded%2Fmagento-pci-auth/lists"}