-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.53 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "wubinworks/module-jwt-auth-patch",
"description": "Fix the JWT authentication vulnerability on certain Magento 2 versions. Deny tokens issued by old encryption key. If you cannot upgrade Magento or cannot apply the official patch, try this one.",
"keywords": [
"cve-2024-34102",
"cosmic sting",
"encryption key",
"key rotation",
"magento 2",
"jwt",
"authentication",
"patch",
"token",
"webapi"
],
"homepage": "https://www.wubinworks.com",
"support": {
"issues": "https://github.com/wubinworks/magento2-jwt-auth-patch/issues",
"chat": "https://www.wubinworks.com/contact"
},
"require": {
"php": ">=7.3",
"magento/magento2-base": ">=2.4.4 <2.4.4-p10 || >=2.4.5 <2.4.5-p9 || >=2.4.6 <2.4.6-p7 || >=2.4.7 <2.4.7-p2"
},
"suggest": {
"wubinworks/module-encryption-key-manager-cli": "A Magento 2 encryption key management utility"
},
"type": "magento2-module",
"version": "1.0.0",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks Dev Team",
"email": "[email protected]",
"homepage": "https://www.wubinworks.com/jwt-auth-patch.html",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\JwtAuthPatch\\": ""
}
}
}