Saturday, 24 April 2021

Is a locally run python dash application secure for sensitive data?

I created a Python Dash Dashboard to interactively display sensitve customer Data. I am using the Dashboard via localhost on my laptop. I a am initializing and running the app as such:

app = dash.Dash(__name__)

if __name__ == "__main__":
    app.run_server(debug = True)

Could the data of the dashboard somehow be accessed by others or is it only accessible from my machine?



from Is a locally run python dash application secure for sensitive data?

No comments:

Post a Comment