-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnotify.py
77 lines (64 loc) · 2.66 KB
/
notify.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
#!/usr/bin/env python3
"""
This module
- will notify AppSec team in Slack for all security controls,
that are not implemented for all services
"""
import os
from google.cloud import firestore
from slack_sdk import WebClient
def notify_appsec(security_controls_firestore_collection, slack_token, slack_channel, security_controls_ignore_final_list):
"""
Get all security controls
Check security controls that are set to false and not part of a FP list
Report to a Slack channel
"""
firestore_docs = firestore.Client()
docs = firestore_docs.collection(security_controls_firestore_collection).stream()
keyword_maps = {
"burp": "Security manual pentest",
"zap": "DAST",
"cis_scanner": "CIS scanner",
"sourceclear": "3rd party dependencies scan",
"docker_scan": "Container image scan",
"threat_model": "Threat model",
"sast": "SAST"
}
for doc in docs:
#Each doc represents a service and the list of security controls.
doc_dict = doc.to_dict()
service = doc_dict['service'].strip(' ').replace(' ','_')
control_list = []
for key in keyword_maps:
if doc_dict[key] is False and f"{service}_{key}" not in security_controls_ignore_final_list:
control_list.append(f"`{keyword_maps[key]}`")
if len(control_list) > 0:
control_string = "\n".join(control_list)
att_str = f"The following security controls are not integrated/implemented for `{service.capitalize()}`.\n\n{control_string}"
client = WebClient(token=slack_token)
client.chat_postMessage(
channel=slack_channel,
text="*AppSec Action Required*",
attachments=[{"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text":att_str,
}
},
], "color": "#C31818"}]
)
def main():
"""
Implements the entrypoint.
"""
security_controls_firestore_collection = os.environ['SC_FIRESTORE_COLLECTION']
slack_token = os.getenv('SLACK_TOKEN')
slack_channel = os.getenv('SLACK_CHANNEL')
security_controls_ignore_list = os.getenv('SECURITY_CONTROLS_IGNORE', '')
security_controls_ignore_final_list = security_controls_ignore_list.split(",")
notify_appsec(security_controls_firestore_collection, slack_token,
slack_channel, security_controls_ignore_final_list)
if __name__ == "__main__":
main()