-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name": "shieldfy/normalizer",
"description": "This package is useful for the input normalization, before running hardcore IDS/IPS rules. It normalize the inputs to fight against WAF Bypassing techniques using obfuscation or other techniques to hide payloads.",
"keywords": [
"obfuscation",
"normalize",
"shieldfy",
"security",
"firewall",
"detection",
"application",
"attack",
"bypass",
"ips",
"ids"
],
"license": "MIT",
"authors": [
{
"name": "Shieldfy Inc.",
"homepage": "https://shieldfy.com",
"email": "team@shieldfy.com"
},
{
"name": "Eslam Salem",
"email": "eslam@shieldfy.com",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Shieldfy\\Normalizer\\": "src/"
}
},
"require": {
"php": ">=5.6",
"shieldfy/sniffer": "1.*"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}