-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat) Add masking to python middleware (#955)
| 🚥 Resolves RM-8742 | | :------------------- | ## 🧰 Changes Adds sensitive data masking to the Python SDK ## 🧬 QA & Testing Updated and added tests as applicable --------- Co-authored-by: Kenny Hoxworth <[email protected]> Co-authored-by: Bill Mill <[email protected]> Co-authored-by: Andrii Andreiev <[email protected]>
- Loading branch information
1 parent
69bc17f
commit b24b2d8
Showing
7 changed files
with
99 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from readme_metrics.MetricsApiConfig import MetricsApiConfig | ||
from readme_metrics.MetricsMiddleware import MetricsMiddleware | ||
|
||
__version__ = "3.1.0" | ||
__version__ = "3.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
from readme_metrics import MetricsApiConfig | ||
from readme_metrics import MetricsMiddleware | ||
from readme_metrics.PayloadBuilder import PayloadBuilder | ||
from readme_metrics.util import mask | ||
from .fixtures import Environ | ||
|
||
|
||
|
@@ -27,6 +28,15 @@ def mockStartResponse(self, status, headers): | |
self.headers = headers | ||
|
||
|
||
class TestUtils: | ||
def testMask(self): | ||
# pylint: disable=line-too-long | ||
assert ( | ||
mask("deadbeef") | ||
== "sha512-ETo7x4PYUfwDcyFLGep76fo95UHsuf4CbVLGA+jqGcF0zA6XBfi5DTEiEsDDpthFPd+z4xQUCc9L7cjvAzWQtA==?beef" | ||
) | ||
|
||
|
||
class TestPayloadBuilder: | ||
""" | ||
Unit Tests for Payload Builder to make sure the created payloads are created | ||
|
@@ -183,7 +193,37 @@ def test_grouping_function(self): | |
data = payload(metrics.req, metrics.res, str(uuid.uuid4())) | ||
group = data["group"] | ||
|
||
assert group["id"] == "spam" | ||
assert group["id"] == mask("spam") | ||
assert group["email"] == "[email protected]" | ||
assert group["label"] == "Spam Musubi" | ||
|
||
def test_mask_matches_node(self): | ||
config = self.mockMiddlewareConfig( | ||
grouping_function=lambda req: { | ||
"api_key": "Bearer: a-random-api-key", | ||
"email": "[email protected]", | ||
"label": "Spam Musubi", | ||
} | ||
) | ||
|
||
environ = Environ.MockEnviron().getEnvironForRequest(b"", "POST") | ||
app = MockApplication("{ 'responseObject': 'value' }") | ||
|
||
metrics = MetricsCoreMock() | ||
middleware = MetricsMiddleware(app, config) | ||
middleware.metrics_core = metrics | ||
|
||
next(middleware(environ, app.mockStartResponse)) | ||
|
||
payload = self.createPayload(config) | ||
data = payload(metrics.req, metrics.res, str(uuid.uuid4())) | ||
group = data["group"] | ||
|
||
assert ( | ||
group["id"] | ||
== "sha512-7S+L0vUE8Fn6HI3836rtz4b6fVf6H4JFur6SGkOnL3b" | ||
+ "FpC856+OSZkpIHphZ0ipNO+kUw1ePb5df2iYrNQCpXw==?-key" | ||
) | ||
assert group["email"] == "[email protected]" | ||
assert group["label"] == "Spam Musubi" | ||
|
||
|
@@ -228,7 +268,7 @@ def test_deprecated_id_grouping(self): | |
data = payload(metrics.req, metrics.res, str(uuid.uuid4())) | ||
group = data["group"] | ||
|
||
assert group["id"] == "spam" | ||
assert group["id"] == mask("spam") | ||
assert group["email"] == "[email protected]" | ||
assert group["label"] == "Spam Musubi" | ||
|
||
|
@@ -282,7 +322,7 @@ def test_grouping_function_validation_when_extra_fields_present(self): | |
assert isinstance(data, dict) | ||
assert "group" in data | ||
assert data["group"] == { | ||
"id": "spam", | ||
"id": mask("spam"), | ||
"email": "[email protected]", | ||
"label": "Spam Musubi", | ||
} | ||
|
@@ -311,6 +351,8 @@ def test_uuid_generation(self): | |
payload = self.createPayload(config) | ||
data = payload(metrics.req, metrics.res, str(uuid.uuid4())) | ||
|
||
print(data["_id"]) | ||
|
||
assert data["_id"] == str(uuid.UUID(data["_id"], version=4)) | ||
|
||
def test_har_creator(self): | ||
|
@@ -337,3 +379,26 @@ def test_har_creator(self): | |
|
||
assert post_data["text"] == json.dumps({"ok": 123, "password": 456}) | ||
assert post_data["mimeType"] == "text/plain" | ||
|
||
def test_auth_header_masked(self): | ||
config = self.mockMiddlewareConfig(development_mode=True) | ||
environ = Environ.MockEnviron().getEnvironForRequest(b"", "GET") | ||
app = MockApplication("{ 'responseObject': 'value' }") | ||
|
||
metrics = MetricsCoreMock() | ||
middleware = MetricsMiddleware(app, config) | ||
middleware.metrics_core = metrics | ||
|
||
next(middleware(environ, app.mockStartResponse)) | ||
|
||
payload = self.createPayload(config) | ||
data = payload(metrics.req, metrics.res, str(uuid.uuid4())) | ||
|
||
auth_header = None | ||
|
||
# Pull out the auth header | ||
for header in data["request"]["log"]["entries"][0]["request"]["headers"]: | ||
if header["name"] == "Authorization": | ||
auth_header = header["value"] | ||
|
||
assert auth_header and auth_header == mask(environ["HTTP_AUTHORIZATION"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters