forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_endpoint_model.py
375 lines (326 loc) · 16.6 KB
/
test_endpoint_model.py
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
import datetime
from .dojo_test_case import DojoTestCase
from unittest import skip
from dojo.endpoint.utils import endpoint_get_or_create
from dojo.models import Product_Type, Product, Engagement, Test, Finding, Endpoint, Endpoint_Status
from django.core.exceptions import ValidationError
from django.apps import apps
from django.utils import timezone
from dojo.endpoint.utils import remove_broken_endpoint_statuses
class TestEndpointModel(DojoTestCase):
def test_empty(self):
endpoint = Endpoint()
self.assertIsNone(endpoint.protocol)
self.assertIsNone(endpoint.userinfo)
self.assertIsNone(endpoint.host)
self.assertIsNone(endpoint.port)
self.assertIsNone(endpoint.path)
self.assertIsNone(endpoint.query)
self.assertIsNone(endpoint.fragment)
self.assertIsNone(endpoint.product)
def test_url_full(self):
endpoint = Endpoint.from_uri('http://[email protected]:8080/path1/path2?key1=value&no_value_key#fragment1')
self.assertEqual(endpoint.protocol, 'http')
self.assertEqual(endpoint.userinfo, 'alice')
self.assertEqual(endpoint.host, 'foo.bar')
self.assertEqual(endpoint.port, 8080)
self.assertEqual(endpoint.path, 'path1/path2') # path begins with '/' but Endpoint store "root-less" path
self.assertEqual(endpoint.query, 'key1=value&no_value_key')
self.assertEqual(endpoint.fragment, 'fragment1')
def test_truncates_large_attributes(self):
path = "foo" * 1000
query = "bar" * 1000
fragment = "baz" * 1000
endpoint = Endpoint.from_uri('http://[email protected]:8080/{}?{}#{}'.format(path, query, fragment))
self.assertEqual(len(endpoint.path), 500)
self.assertEqual(len(endpoint.query), 1000)
self.assertEqual(len(endpoint.fragment), 500)
def test_noscheme(self):
endpoint = Endpoint.from_uri('//' + 'localhost:22')
self.assertIsNone(endpoint.protocol)
self.assertIsNone(endpoint.userinfo)
self.assertEqual(endpoint.host, 'localhost')
self.assertEqual(endpoint.port, 22)
self.assertIsNone(endpoint.path)
self.assertIsNone(endpoint.query)
self.assertIsNone(endpoint.fragment)
self.assertIsNone(endpoint.product)
def test_paths(self):
endpoint = Endpoint.from_uri('https://foo.bar')
self.assertIsNone(endpoint.path)
endpoint = Endpoint.from_uri('https://foo.bar/')
self.assertIsNone(endpoint.path)
def test_ip(self):
endpoint = Endpoint.from_uri('http://127.0.0.1/')
self.assertEqual(endpoint.host, '127.0.0.1')
endpoint = Endpoint(host='127.0.0.1')
self.assertEqual(endpoint.host, '127.0.0.1')
def test_less_standard_hosts(self):
endpoint = Endpoint.from_uri('http://123_server/')
endpoint.clean()
endpoint = Endpoint(host='456_desktop')
endpoint.clean()
endpoint = Endpoint(host='_invalid._host.com')
endpoint.clean()
def test_invalid(self):
self.assertRaises(ValidationError, Endpoint.from_uri, 'http://127.0.0.1:portNo/')
endpoint = Endpoint.from_uri('http://127.0.0.1:-1/')
self.assertRaises(ValidationError, endpoint.clean)
endpoint = Endpoint.from_uri('http://127.0.0.1:66666/')
self.assertRaises(ValidationError, endpoint.clean)
endpoint = Endpoint(host='127.0.0.1', port=-1)
self.assertRaises(ValidationError, endpoint.clean)
endpoint = Endpoint(host='127.0.0.1', port=66666)
self.assertRaises(ValidationError, endpoint.clean)
def test_ports(self):
# known port
endpoint = Endpoint.from_uri('http://foo.bar/')
self.assertEqual(endpoint.port, 80)
# unknown port
endpoint = Endpoint.from_uri('this-scheme-is-unknown://foo.bar/')
self.assertIsNone(endpoint.port)
def test_spacial_char(self):
endpoint = Endpoint.from_uri('http://foo.bar/beforeSpace%20afterSpace')
self.assertEqual(endpoint.path, 'beforeSpace afterSpace')
self.assertEqual(str(endpoint), 'http://foo.bar/beforeSpace%20afterSpace')
endpoint = Endpoint.from_uri('//' + 'foo.bar/beforeSpace%20afterSpace')
self.assertEqual(endpoint.path, 'beforeSpace afterSpace')
self.assertEqual(str(endpoint), 'foo.bar/beforeSpace%20afterSpace')
def test_url_normalize(self):
endpoint1 = Endpoint.from_uri('HTTP://FOO.BAR/')
endpoint2 = Endpoint.from_uri('HtTp://foo.BAR/')
self.assertEqual(endpoint1.protocol, 'HTTP')
self.assertEqual(endpoint1.host, 'foo.bar')
self.assertEqual(str(endpoint1), 'http://foo.bar')
self.assertEqual(endpoint1, endpoint2)
def test_get_or_create(self):
endpoint1, created1 = endpoint_get_or_create(
protocol='http',
host='bar.foo'
)
self.assertTrue(created1)
endpoint2, created2 = endpoint_get_or_create(
protocol='http',
host='bar.foo'
)
self.assertFalse(created2)
endpoint3, created3 = endpoint_get_or_create(
protocol='http',
host='bar.foo',
port=80
)
self.assertFalse(created3)
endpoint4, created4 = endpoint_get_or_create(
protocol='http',
host='bar.foo',
port=8080
)
self.assertTrue(created4)
endpoint5, created5 = endpoint_get_or_create(
protocol='https',
host='bar.foo',
port=443
)
self.assertTrue(created5)
endpoint6, created6 = endpoint_get_or_create(
protocol='https',
host='bar.foo'
)
self.assertFalse(created6)
endpoint7, created7 = endpoint_get_or_create(
protocol='https',
host='bar.foo',
port=8443
)
self.assertTrue(created7)
def test_equality_without_products(self):
# Test with all the fields
e1 = Endpoint(protocol="https", host="localhost", port=5439, path="test", query="param=value")
e2 = Endpoint(protocol="https", host="localhost", port=5439, path="test", query="param=value")
e3 = Endpoint(protocol="https", host="localhost", port=5439, path="different", query="param=value")
# Verify e1 and e2 are actually equal
self.assertTrue(e1 == e2)
# Verify e1 and e2 are not equal because the path is different
self.assertFalse(e1 == e3)
def test_equality_with_one_product_one_without(self):
# Define the product
p = Product.objects.get_or_create(
name="test product",
description="",
prod_type=Product_Type.objects.get_or_create(name="test pt")[0]
)[0]
e1 = Endpoint(host="localhost")
e2 = Endpoint(host="localhost", product=p)
# Verify e1 and e2 are actually equal
# Since on has a product and the other does not, we cannot use products to aid in equality
self.assertTrue(e1 == e2)
def test_equality_with_products(self):
# Define the product
p1 = Product.objects.get_or_create(
name="test product 1",
description="",
prod_type=Product_Type.objects.get_or_create(name="test pt")[0]
)[0]
p2 = Product.objects.get_or_create(
name="test product 2",
description="",
prod_type=Product_Type.objects.get_or_create(name="test pt")[0]
)[0]
# Define the endpoints
e1 = Endpoint(host="localhost", product=p1)
e2 = Endpoint(host="localhost", product=p1)
e3 = Endpoint(host="localhost", product=p2)
# Verify e1 and e2 are actually equal
# Since the products match, this should be true
self.assertTrue(e1 == e2)
# Verify e1 and e2 are not equal
# Because the products are different, the endpoint objects are not the same
self.assertFalse(e1 == e3)
@skip("Outdated - this class was testing clean-up broken entries in old version of model; new version of model doesn't to store broken entries")
class TestEndpointStatusBrokenModel(DojoTestCase):
def test_endpoint_status_broken(self):
self.prod_type = Product_Type.objects.create()
self.product = Product.objects.create(prod_type=self.prod_type)
self.engagement = Engagement.objects.create(
product=self.product,
target_start=datetime.datetime(2020, 1, 1, tzinfo=timezone.utc),
target_end=datetime.datetime(2022, 1, 1, tzinfo=timezone.utc)
)
self.test = Test.objects.create(
engagement=self.engagement,
target_start=datetime.datetime(2020, 1, 1, tzinfo=timezone.utc),
target_end=datetime.datetime(2022, 1, 1, tzinfo=timezone.utc),
test_type_id=1
)
from django.contrib.auth import get_user_model
user = get_user_model().objects.create().pk
self.finding = Finding.objects.create(test=self.test, reporter_id=user).pk
self.endpoint = Endpoint.objects.create(protocol='http', host='foo.bar.eps').pk
self.another_finding = Finding.objects.create(test=self.test, reporter_id=user).pk
self.another_endpoint = Endpoint.objects.create(protocol='http', host='bar.foo.eps').pk
self.endpoint_status = {
'standard': Endpoint_Status.objects.create(
date=datetime.datetime(2021, 3, 1, tzinfo=timezone.utc),
last_modified=datetime.datetime(2021, 4, 1, tzinfo=timezone.utc),
mitigated=False,
finding_id=self.finding,
endpoint_id=self.endpoint
).pk,
'removed_endpoint': Endpoint_Status.objects.create(
date=datetime.datetime(2021, 2, 1, tzinfo=timezone.utc),
last_modified=datetime.datetime(2021, 5, 1, tzinfo=timezone.utc),
mitigated=True,
finding_id=self.another_finding,
endpoint_id=None
).pk,
'removed_finding': Endpoint_Status.objects.create(
date=datetime.datetime(2021, 2, 1, tzinfo=timezone.utc),
last_modified=datetime.datetime(2021, 5, 1, tzinfo=timezone.utc),
mitigated=True,
finding_id=None,
endpoint_id=self.another_endpoint
).pk,
}
Finding.objects.get(id=self.finding).endpoint_status.add(
Endpoint_Status.objects.get(id=self.endpoint_status['standard'])
)
Finding.objects.get(id=self.another_finding).endpoint_status.add(
Endpoint_Status.objects.get(id=self.endpoint_status['removed_endpoint'])
)
Endpoint.objects.get(id=self.endpoint).endpoint_status.add(
Endpoint_Status.objects.get(id=self.endpoint_status['standard'])
)
Endpoint.objects.get(id=self.another_endpoint).endpoint_status.add(
Endpoint_Status.objects.get(id=self.endpoint_status['removed_finding'])
)
remove_broken_endpoint_statuses(apps)
with self.subTest('Stadnard eps for finding'):
f = Finding.objects.filter(id=self.finding)
self.assertEqual(f.count(), 1)
f = f.first()
self.assertEqual(f.endpoint_status.count(), 1)
self.assertEqual(f.endpoint_status.first().pk, self.endpoint_status['standard'])
with self.subTest('Broken eps for finding'):
f = Finding.objects.filter(id=self.another_finding)
self.assertEqual(f.count(), 1)
f = f.first()
self.assertEqual(f.endpoint_status.count(), 0)
with self.subTest('Stadnard eps for endpoint'):
e = Endpoint.objects.filter(id=self.endpoint)
self.assertEqual(e.count(), 1)
e = e.first()
self.assertEqual(e.endpoint_status.count(), 1)
self.assertEqual(e.endpoint_status.first().pk, self.endpoint_status['standard'])
with self.subTest('Broken eps for endpoint'):
e = Endpoint.objects.filter(id=self.another_endpoint)
self.assertEqual(e.count(), 1)
e = e.first()
self.assertEqual(e.endpoint_status.count(), 0)
class TestEndpointStatusModel(DojoTestCase):
fixtures = ['dojo_testdata.json']
def test_str(self):
eps = Endpoint_Status.objects.get(id=1)
self.assertEqual(str(eps), "'High Impact Test Finding' on 'ftp://localhost'")
# def test_dummy(self):
# fs = Finding.objects.all()
# for f in fs:
# print(f.id, f.test.engagement.product.id, str(f))
# es = Endpoint.objects.all()
# for e in es:
# print(e.id, e.product.id, str(e))
# epss = Endpoint_Status.objects.all()
# for eps in epss:
# print(eps.id, eps.finding.id, eps.endpoint.id, str(eps))
def test_status_evaluation(self):
ep1 = Endpoint.objects.get(id=4)
ep2 = Endpoint.objects.get(id=5)
ep3 = Endpoint.objects.get(id=6)
ep4 = Endpoint.objects.get(id=7)
ep5 = Endpoint.objects.get(id=8)
with self.subTest('Endpoint without statuses'):
self.assertEqual(ep1.findings_count, 0, ep1.findings.all())
self.assertEqual(ep1.active_findings_count, 0, ep1.active_findings)
self.assertFalse(ep1.vulnerable, ep1.active_findings_count)
self.assertTrue(ep1.mitigated, ep1.active_findings_count)
with self.subTest('Endpoint with vulnerabilities but all of them are mitigated because of different reasons'):
self.assertEqual(ep2.findings_count, 4, ep2.findings.all())
self.assertEqual(ep2.active_findings_count, 0, ep2.active_findings)
self.assertFalse(ep2.vulnerable, ep2.active_findings_count)
self.assertTrue(ep2.mitigated, ep2.active_findings_count)
with self.subTest('Host without vulnerabilities'):
self.assertEqual(ep1.host_endpoints_count, 2, ep1.host_endpoints)
self.assertEqual(ep2.host_endpoints_count, 2, ep2.host_endpoints)
self.assertEqual(ep1.host_findings_count, 4, ep1.host_findings)
self.assertEqual(ep2.host_findings_count, 4, ep2.host_findings)
self.assertEqual(ep1.host_active_findings_count, 0, ep1.host_active_findings)
self.assertEqual(ep2.host_active_findings_count, 0, ep2.host_active_findings)
self.assertEqual(ep1.host_mitigated_endpoints_count, 1, ep1.host_mitigated_endpoints)
self.assertEqual(ep2.host_mitigated_endpoints_count, 1, ep2.host_mitigated_endpoints)
with self.subTest('Endpoint with one vulnerabilitiy but EPS is mitigated'):
self.assertEqual(ep3.findings_count, 1, ep3.findings.all())
self.assertEqual(ep3.active_findings_count, 0, ep3.active_findings)
self.assertFalse(ep3.vulnerable, ep3.active_findings_count)
self.assertTrue(ep3.mitigated, ep3.active_findings_count)
with self.subTest('Endpoint with one vulnerability'):
self.assertEqual(ep4.findings_count, 1, ep4.findings.all())
self.assertEqual(ep4.active_findings_count, 1, ep4.active_findings)
self.assertTrue(ep4.vulnerable, ep4.active_findings_count)
self.assertFalse(ep4.mitigated, ep4.active_findings_count)
with self.subTest('Endpoint with one vulnerability but finding is mitigated'):
self.assertEqual(ep5.findings_count, 1, ep5.findings.all())
self.assertEqual(ep5.active_findings_count, 0, ep5.active_findings)
self.assertFalse(ep5.vulnerable, ep5.active_findings_count)
self.assertTrue(ep5.mitigated, ep5.active_findings_count)
with self.subTest('Host with vulnerabilities'):
self.assertEqual(ep3.host_endpoints_count, 3, ep3.host_endpoints)
self.assertEqual(ep4.host_endpoints_count, 3, ep4.host_endpoints)
self.assertEqual(ep5.host_endpoints_count, 3, ep5.host_endpoints)
self.assertEqual(ep3.host_findings_count, 2, ep3.host_findings)
self.assertEqual(ep4.host_findings_count, 2, ep4.host_findings)
self.assertEqual(ep5.host_findings_count, 2, ep5.host_findings)
self.assertEqual(ep3.host_active_findings_count, 1, ep3.host_active_findings)
self.assertEqual(ep4.host_active_findings_count, 1, ep4.host_active_findings)
self.assertEqual(ep5.host_active_findings_count, 1, ep5.host_active_findings)
self.assertEqual(ep3.host_mitigated_endpoints_count, 2, ep3.host_mitigated_endpoints)
self.assertEqual(ep4.host_mitigated_endpoints_count, 2, ep4.host_mitigated_endpoints)
self.assertEqual(ep5.host_mitigated_endpoints_count, 2, ep5.host_mitigated_endpoints)