-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.49 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-template-filter-patch",
"description": "Magento 2 patch for CVE-2022-24086, CVE-2022-24087. Fix the RCE vulnerability and related bugs by performing deep template variable escaping. If you cannot upgrade Magento or cannot apply the official patches, try this one.",
"keywords": [
"cve-2022-24086",
"cve-2022-24087",
"rce",
"magento 2",
"email template",
"template directive",
"patch",
"template filter",
"improper input validation",
"sanitize",
"escaper",
"deep escape",
"legacyresolver"
],
"homepage": "https://www.wubinworks.com",
"support": {
"issues": "https://github.com/wubinworks/magento2-template-filter-patch/issues",
"chat": "https://www.wubinworks.com/contact"
},
"require": {
"php": ">=7.3",
"magento/magento2-base": "~2.4.0"
},
"type": "magento2-module",
"version": "1.0.1",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks Dev Team",
"email": "[email protected]",
"homepage": "https://www.wubinworks.com/template-filter-patch.html",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\TemplateFilterPatch\\": ""
}
}
}