something like this works, though it needs access to the `BasicAuth` instance. ``` python class SecuredStaticFlask(Flask): @basic_auth.required def send_static_file(self, filename): return super(SecuredStaticFlask, self).send_static_file(filename) ```