(1) Event Sigma main event: A secret, such as a password, cryptographic key, or token is stored in a file that is persisted to the code repository. Any user with access to the code repository may obtain and use the secret to access restricted resources.
(2) Event remediation: Avoid committing to the code repository any files that contain secrets or sensitive data. These files should be managed outside the code repository, preferably using a secure vault or similar, and loaded onto the system as needed.
1    	LOG_FILE = "/var/log/pcsd/pcs_snmp_agent.log"
2    	ENTERPRISES_OID = "1.3.6.1.4.1"
3    	PACEMAKER_OID = ENTERPRISES_OID + ".32723"
4    	PCS_OID = PACEMAKER_OID + ".100"
5    	DEFAULT_UPDATE_INTERVAL = 30
6