Skip to content

Commit b8d1fee

Browse files
author
Rafael Grigorian
committed
Released Version 1.1.4
1 parent d661a7d commit b8d1fee

File tree

39 files changed

+45
-61
lines changed

39 files changed

+45
-61
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,8 @@
8181

8282
## Version 1.1.3
8383
- Fixed GH-7, password lifetime issue with Enterprise_Pci module on EE
84+
85+
## Version 1.1.4
86+
- Fixed GH-11, Admin Base URL Missing From Admin Email
87+
- Fixed GH-12, Email Is Sent To Inactive Admin Users On Ban
88+
- Fixed GH-13, Replace 'mt_rand' With 'random_int'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
![](https://img.shields.io/badge/Magento-1-orange.svg?style=for-the-badge)
55
![](https://img.shields.io/badge/License-MIT-orange.svg?style=for-the-badge)
6-
![](https://img.shields.io/badge/Version-1.1.3-orange.svg?style=for-the-badge)
6+
![](https://img.shields.io/badge/Version-1.1.4-orange.svg?style=for-the-badge)
77
![](https://img.shields.io/badge/Stability-Stable-orange.svg?style=for-the-badge)
88

99
<p align="center" >

conf/package.xml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" ?>
22
<package>
33
<name>JetRails_TwoFactor</name>
44
<version></version>
@@ -9,29 +9,8 @@
99
<channel>community</channel>
1010
<extends/>
1111
<summary>The JetRails 2FA plugin adds an extra layer of security to your Magento store. User-based 2FA enablement ensures that admin users are following best security practices.</summary>
12-
<description>
13-
Your Magento storefront is vulnerable. Eliminate your security risk by downloading the JetRails Two-factor authentication module. Two-factor authentication, also known as 2FA, is a critical component for Magento security and is used widely by Magento backend admin users. Authentication is a security process to verify a user's identity. Authentication consists of three factors; something they know (ie. password), something they have (ie. phone), or something they are (ie. fingerprint).
14-
With a stock Magento installation a user is only given one method of authentication -- something they know. This usually consists of their administrative username and password. While having one method of authentication is typically secure, it has its limitations. By adding one additional layer of authentication, security is significantly strengthened. Having multiple methods of authentication is known as multi-factor authentication. It is often recommended that you choose at least two out of the three methods of authentication to ensure strong security.
15-
This plugin works with "something they know" and "something they have". A Magento admin user that has the JetRails 2FA plugin enabled will not only be authenticated with "something they know", which would be their admin username and password, but they will also authenticate with "something they have", such as their phone or tablet.
16-
Once the JetRails 2FA plugin is installed for your Magento store and an admin successfully logs into their account, the JetRails 2FA plugin will prompt the user to set up their 2FA account. The typical user enrollment process takes up to five minutes including installation of the Google Authenticator application on their device. For more information on using the JetRails 2FA plugin, make sure to read the user guide which offers visual step-by-step instructions.
17-
2FA has become an industry standard and is implemented using the Time-Based One-Time Password (TOTP) algorithm. In developing this plugin, RFC-6238 was used for reference. Since 2FA gives an extra layer of protection to Magento’s authentication process, it is vital to every Magento installation.
18-
19-
This plugin comes with the following features and benefits:
20-
21-
- A Master Administrator can require 2FA to be utilized by specific users.
22-
- Usage of 2FA can be enforced and required for log in.
23-
- Once you use the 2FA to log in, there is an option to bypass authentication for a pre-configured number of days.
24-
- A Master Administrator can oversee every user's authentication process.
25-
- In the event of a lost or misplaced 2FA account, backup codes are available as an alternate method for authentication.
26-
- In the event of an attempted account breach, prevention protocols are in place via brute-force protection, which will temporarily block the account.
27-
- The threshold for the number of failed authentication attempts before a temporary ban is imposed is configurable.
28-
- The duration of a user's temporary ban is configurable.
29-
- An automatic instantaneous alert will be sent to the account owner and store admins informing them of an attempted breach. Any security warning will be logged with any relevant data such as the offender's IP address.
30-
- The 2FA account can be setup for devices (something they have) using the Google Authenticator app, which is available for every platform including iPhone and Android.
31-
</description>
32-
<notes>
33-
- Fixed GH-7, password lifetime issue with Enterprise_Pci module on EE
34-
</notes>
12+
<description>https://github.com/jetrails/magento-twofactor</description>
13+
<notes>Released Version 1.1.4</notes>
3514
<authors>
3615
<author>
3716
<name>Rafael Grigorian</name>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.3",
2+
"version": "1.1.4",
33
"name": "magento-twofactor",
44
"description": "User based 2FA enablement for admin users in Magento 1.x",
55
"author": "Rafael Grigorian",

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Configure/Edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Edit.php - This class exists to simply tell Magento's grid system where to look for the
55
* proper controller for the configure page. It also specifies the proper block group within
66
* the constructor.
7-
* @version 1.1.3
7+
* @version 1.1.4
88
* @package JetRails® TwoFactor
99
* @category Configure
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Configure/Edit/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Form.php - This class initializes the form, field-set, and form fields that will exist on the
55
* configure page. All information is set in the _prepareForm method.
6-
* @version 1.1.3
6+
* @version 1.1.4
77
* @package JetRails® TwoFactor
88
* @category Edit
99
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Manage/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Container.php - This class exists to simply tell Magento's grid system where to look for the
55
* proper controller for the configure page. It also specifies the proper block group within
66
* the constructor.
7-
* @version 1.1.3
7+
* @version 1.1.4
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Manage/Container/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Grid.php - This class defines what collection to use for the grid collection. It also
55
* defines all the columns for the grid widget. Additionally it defines all the mass-action
66
* options for the widget grid.
7-
* @version 1.1.3
7+
* @version 1.1.4
88
* @package JetRails® TwoFactor
99
* @category Container
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Renderer/Manage/Address.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Address.php - This class is a renderer class that is used with the grid widget's columns.
55
* These classes are used to load information from the authentication model using the admin
66
* user's id.
7-
* @version 1.1.3
7+
* @version 1.1.4
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Renderer/Manage/State.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* State.php - This class is a renderer class that is used with the grid widget's columns.
55
* These classes are used to load information from the authentication model using the admin
66
* user's id.
7-
* @version 1.1.3
7+
* @version 1.1.4
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)