Flask - Security Best Practices
Identify the security issue in this Flask route and how to fix it:
@app.route('/profile')
def profile():
user_id = request.args.get('user_id')
user = get_user_from_db(user_id)
return f'Profile page of {user.name}'