Reputation: 9201
I am trying to run fortify analyzer on my python code and I am trying to read a file created by my kubernetes server but I am being flagged as Path Manipulation..
What can I do to handle this Critical level in my python code?
namespace = open("/var/run/secrets/kubernetes.io/serviceaccount/namespace").read()
There is nothing I can do as this is the default path installation of my kubernetes server.
Upvotes: 2
Views: 757