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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
[
{
"description": "THeader detects unframed binary wire format",
"name": "theader_unframed_binary",
"command": [
"python",
"theader_binary.py",
"--override-protocol=binary",
"--override-transport=buffered"
],
"protocols": ["header"],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"description": "THeader detects framed binary wire format",
"name": "theader_framed_binary",
"command": [
"python",
"theader_binary.py",
"--override-protocol=binary",
"--override-transport=framed"
],
"protocols": ["header"],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"description": "THeader detects unframed compact wire format",
"name": "theader_unframed_compact",
"command": [
"python",
"theader_binary.py",
"--override-protocol=compact",
"--override-transport=buffered"
],
"protocols": ["header"],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"description": "THeader detects framed compact wire format",
"name": "theader_framed_compact",
"command": [
"python",
"theader_binary.py",
"--override-protocol=compact",
"--override-transport=framed"
],
"protocols": ["header"],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"name": "limit_string_length",
"command": [
"python",
"string_limit.py",
"--limit=50"
],
"remote_args": [
"--string-limit=50"
],
"protocols": [
"compact"
],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"name": "limit_container_length",
"command": [
"python",
"container_limit.py",
"--limit=50"
],
"remote_args": [
"--container-limit=50"
],
"protocols": [
"compact"
],
"transports": ["buffered"],
"sockets": ["ip"],
"workdir": "features"
},
{
"name": "nosslv3",
"comment": "check to make sure SSLv3 is not supported",
"command": [
"nosslv3.sh"
],
"protocols": ["binary"],
"transports": ["buffered"],
"sockets": ["ip-ssl"],
"workdir": "features"
},
{
"name": "tls",
"comment": "check to make sure TLSv1.0 or later is supported",
"command": [
"tls.sh"
],
"protocols": ["binary"],
"transports": ["buffered"],
"sockets": ["ip-ssl"],
"workdir": "features"
}
]
|